This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The endDelay
property of AnimationEffectTimingReadOnly
represents the number of milliseconds to delay after the end time of an animation. The end time of an animation effect is simply the sum of its delay
, duration
, and endDelay
.
This is useful for sequencing animations based on the end time of another animation.
Note: Although this is typically only useful in combination with sequence effects introduced in a subsequent level of this specification, it is included here for the purpose of representing the min
attribute in SVG ([SVG11], Chapter 19).
Note: In AnimationEffectTiming
, a mutable subclass of AnimationEffectTimingReadOnly
used with KeyframeEffects
, the property acts as both a getter and a setter.
// Getting the delay in milliseconds var animationEndDelay = animation.effect.timing.endDelay; // Setting the delay in milliseconds animationEndDelay.timing.endDelay = 200;
A number representing the end delay, specified in milliseconds. The default value is 0.
Specification | Status | Comment |
---|---|---|
Web Animations The definition of 'AnimationEffectTimingReadOnly.enddelay' in that specification. | Working Draft | Editor's draft. |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | (Yes) | 48 (48) | No support | (Yes) | No support |
Feature | Android | Android Webview | Chrome for Android | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|---|
Basic support | ? | ? | ? | ? | ? | No support | No support | No support |
AnimationEffectReadOnly.timing
returns a AnimationEffectTimingReadOnly
object...AnimationEffect.timing
returns a mutable AnimationEffectTiming
object.
© 2005–2018 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/AnimationEffectTimingReadOnly/endDelay