Window: animationstart event

The animationstart event is fired when a CSS Animation has started. If there is an animation-delay, this event will fire once the delay period has expired. A negative delay will cause the event to fire with an elapsedTime equal to the absolute value of the delay (and, correspondingly, the animation will begin playing at that time index into the sequence).

Bubbles Yes
Cancelable No
Interface AnimationEvent
Event handler property onanimationstart

The original target for this event is the Element that had the animation applied. You can listen for this event on the Window interface to handle it in the capture or bubbling phases. For full details on this event please see the page on HTMLElement: animationstart.

Examples

This listens for the animationstart event and logs a message when it is fired:

window.addEventListener('animationstart', () => {
  console.log('Animation started');
});

The same, but using onanimationstart:

window.onanimationstart = () => {
  console.log('Animation started');
};

See a live example of this event.

Specifications

Specification Status Comment
CSS Animations Working Draft Initial definition

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
animationstart eventChrome Full support 43
Full support 43
Full support 1
Prefixed
Prefixed Implemented with the vendor prefix: webkit
Edge Full support ≤79
Full support ≤79
Full support ≤79
Prefixed
Prefixed Implemented with the vendor prefix: webkit
Firefox Full support 51IE ? Opera ? Safari Full support 9WebView Android Full support 43
Full support 43
Full support Yes
Prefixed
Prefixed Implemented with the vendor prefix: webkit
Chrome Android Full support 43
Full support 43
Full support 18
Prefixed
Prefixed Implemented with the vendor prefix: webkit
Firefox Android Full support 51Opera Android ? Safari iOS Full support 9Samsung Internet Android Full support 4.0
Full support 4.0
Full support 1.0
Prefixed
Prefixed Implemented with the vendor prefix: webkit

Legend

Full support
Full support
Compatibility unknown
Compatibility unknown
Requires a vendor prefix or different name for use.
Requires a vendor prefix or different name for use.

See also