web api interface
AnimationEvent
The AnimationEvent interface represents events providing information related to animations.
Constructor
AnimationEvent()- : Creates an
AnimationEventevent with the given parameters.
- : Creates an
Instance properties
Also inherits properties from its parent Event.
animationRead only- : A
CSSAnimationread-only property representing the animation associated with the event.
- : A
animationNameRead only- : A string containing the value of the
animation-namethat generated the animation.
- : A string containing the value of the
elapsedTimeRead only- : A
floatgiving the amount of time the animation has been running, in seconds, when this event fired, excluding any time the animation was paused. For ananimationstartevent,elapsedTimeis0.0unless there was a negative value foranimation-delay, in which case the event will be fired withelapsedTimecontaining(-1 * delay).
- : A
pseudoElementRead only- : A string, 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:''.
- : A string, starting with
Instance methods
Inherits methods from its parent, Event.
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- Using CSS animations
- Animation-related CSS properties and at-rules:
animation,animation-composition,animation-delay,animation-direction,animation-duration,animation-fill-mode,animation-iteration-count,animation-name,animation-play-state,animation-timing-function,@keyframes.