This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.
The Animation
.currentTime
property of the Web Animations API returns and sets the current time value of the animation in milliseconds, whether running or paused.
If the animation lacks a timeline
, is inactive, or hasn't been played yet, currentTime
's return value is null
.
var currentTime = Animation.currentTime; Animation.currentTime = newTime;
A number representing the current time in milliseconds, or null
to deactivate the animation.
In the Drink Me/Eat Me game, Alice's height is animated so it can go from small to large or large to small. At the start of the game, her height is set between the two extremes by setting her animation's currentTime
to half her KeyframeEffect
's duration:
aliceChange.currentTime = aliceChange.effect.timing.duration / 2;
A more generic means of seeking to the 50% mark of an animation would be:
animation.currentTime = animation.effect.getComputedTiming().delay + animation.effect.getComputedTiming().activeDuration / 2;
Specification | Status | Comment |
---|---|---|
Web Animations The definition of 'currentTime' in that specification. | Working Draft |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 39.0 | 48 (48)[1] | No support | No support | No support |
Feature | Android | Android Webview | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|
Basic support | No support | 39.0 | 48.0 (48)[1] | No support | No support | No support | 39.0 |
[1] The Web Animations API is only enabled by default in Firefox Developer Edition and Nightly builds. You can enable it in beta and release builds by setting the preference dom.animations-api.core.enabled
to true
, and can disable it in any Firefox version by setting this preference to false
.
Animation
for other methods and properties you can use to control web page animation.Animation.startTime
for the time an animation is scheduled to start.
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Animation/currentTime