playbackRate property

double get playbackRate

The Animation.playbackRate property of the Web Animations API returns or sets the playback rate of the animation.

Animations have a playback rate that provides a scaling factor from the rate of change of the animation's DocumentTimeline time values to the animation's current time. The playback rate is initially 1.

Implementation

external double get playbackRate;
set playbackRate (num value)

Implementation

external set playbackRate(num value);