This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for the proper prefixes to use 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 spec changes.
The AnimationEvent
interface represents events providing information related to animations.
<div id="interfaceDiagram" style="display: inline-block; position: relative; width: 100%; padding-bottom: 11.666666666666666%; vertical-align: middle; overflow: hidden;"><svg style="display: inline-block; position: absolute; top: 0; left: 0;" viewbox="-50 0 600 70" preserveAspectRatio="xMinYMin meet"><a xlink:href="https://developer.mozilla.org/en-US/docs/Web/API/Event" target="_top"><rect x="1" y="1" width="75" height="50" fill="#fff" stroke="#D4DDE4" stroke-width="2px" /><text x="38.5" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">Event</text></a><polyline points="76,25 86,20 86,30 76,25" stroke="#D4DDE4" fill="none"/><line x1="86" y1="25" x2="116" y2="25" stroke="#D4DDE4"/><a xlink:href="https://developer.mozilla.org/en-US/docs/Web/API/AnimationEvent" target="_top"><rect x="116" y="1" width="140" height="50" fill="#F4F7F8" stroke="#D4DDE4" stroke-width="2px" /><text x="186" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">AnimationEvent</text></a></svg></div>
a:hover text { fill: #0095DD; pointer-events: all;}
Properties
Also inherits properties from its parent Event
.
AnimationEvent.animationName
Read only- Is a
DOMString
containing the value of theanimation-name
CSS property associated with the transition. AnimationEvent.elapsedTime
Read only- Is a
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
is0.0
unless there was a negative value foranimation-delay
, in which case the event will be fired withelapsedTime
containing(-1 *
delay)
. AnimationEvent.pseudoElement
Read only- Is a
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:''
.
Constructor
AnimationEvent()
- Creates an
AnimationEvent
event with the given parameters.
Methods
Also inherits methods from its parent Event
.
AnimationEvent.initAnimationEvent()
- Initializes a
AnimationEvent
created using the deprecatedDocument.createEvent("AnimationEvent")
method.
Specifications
Specification | Status | Comment |
---|---|---|
CSS Animations The definition of 'AnimationEvent' in that specification. |
Working Draft | Initial definition. |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support |
1.0 webkit 43.0 |
6.0 (6.0) | 10.0 | 12 o 12.10 15.0 webkit |
4.0 webkit |
AnimationEvent() constructor |
43.0 |
23.0 (23.0) | Not supported | Not supported | Not supported |
initAnimationEvent() |
1.0 | 6.0 (6.0) Removed in 23.0 (23.0) |
10.0 | 12 | 4.0 |
pseudoelement |
Not supported | 23.0 (23.0) | Not supported | Not supported | Not supported |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|
Basic support | (Yes)webkit | 6.0 (6.0) | 10.0 | 12 o 12.10 15.0 webkit |
(Yes)webkit | 43.0 |
AnimationEvent() constructor |
Not supported | 23.0 (23.0) | Not supported | Not supported | Not supported | 43.0 |
initAnimationEvent() |
(Yes) | 6.0 (6.0) Removed in 23.0 (23.0) |
10.0 | (Yes) | (Yes) | Not supported |
pseudoelement |
Not supported | 23.0 (23.0) | Not supported | Not supported | Not supported | Not supported |
See also
- Using CSS animations
- Animation-related CSS properties and at-rules:
animation
,animation-delay
,animation-direction
,animation-duration
,animation-fill-mode
,animation-iteration-count
,animation-name
,animation-play-state
,animation-timing-function
,@keyframes
.