This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The AnimationEvent
interface represents events providing information related to animations.
AnimationEvent()
AnimationEvent
event with the given parameters.Also inherits properties from its parent Event
.
AnimationEvent.animationName
Read only
DOMString
containing the value of the animation-name
CSS property associated with the transition.AnimationEvent.elapsedTime
Read only
float
giving the amount of time the animation has been running, in seconds, when this event fired, excluding any time the animation was paused. For an "animationstart"
event, elapsedTime
is 0.0
unless there was a negative value for animation-delay
, in which case the event will be fired with elapsedTime
containing (-1 *
delay)
.AnimationEvent.pseudoElement
Read only
DOMString
, starting with '::'
, containing the name of the pseudo-element the animation runs on. If the animation doesn't run on a pseudo-element but on the element, an empty string: ''
.
Also inherits methods from its parent Event
.
AnimationEvent.initAnimationEvent()
AnimationEvent
created using the deprecated Document.createEvent("AnimationEvent")
method.Specification | Status | Comment |
---|---|---|
CSS Animations The definition of 'AnimationEvent' in that specification. | Working Draft | Initial definition. |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 1.0 webkit 43.0 | (Yes) | 6.0 (6.0) | 10.0 | 4.0 webkit | |
AnimationEvent() constructor | 43.0 | (Yes) | 23.0 (23.0) | No support | No support | No support |
initAnimationEvent()
| 1.0 | (Yes) |
6.0 (6.0) Removed in 23.0 (23.0) | 10.0 | 12 | 4.0 |
pseudoelement | No support | No support | 23.0 (23.0) | No support | No support | No support |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|
Basic support | (Yes)webkit | (Yes) | 6.0 (6.0) | 10.0 | 12 o 12.10 15.0 webkit | (Yes)webkit | 43.0 |
AnimationEvent() constructor | No support | (Yes) | 23.0 (23.0) | No support | No support | No support | 43.0 |
initAnimationEvent()
| (Yes) | (Yes) | 6.0 (6.0) Removed in 23.0 (23.0) | 10.0 | (Yes) | (Yes) | No support |
pseudoelement | No support | No support | 23.0 (23.0) | No support | No support | No support | No support |
animation
, animation-delay
, animation-direction
, animation-duration
, animation-fill-mode
, animation-iteration-count
, animation-name
, animation-play-state
, animation-timing-function
, @keyframes
.
© 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/AnimationEvent