Web/API/Animation/finished

From Get docs

This is an experimental technologyCheck the Browser compatibility table carefully before using this in production.


The Animation.finished read-only property of the Web Animations API returns a Promise which resolves once the animation has finished playing.

Every time the animation leaves the finished play state (that is, when it starts playing again), a new Promise is created for this property. The new Promise will resolve once the new animation sequence has completed.


Syntax

var animationsPromise = Animation.finished;

Value

A Promise object which will resolve once the animation has finished running.

Examples

The following code waits until all animations running on the element elem have finished, then deletes the element from the DOM tree:

Promise.all(
  elem.getAnimations().map( 
    function(animation) { 
      return animation.finished 
    }
  )
).then(
  function() {
    return elem.remove();
  }
);

Specifications

Specification Status Comment
Web AnimationsThe definition of 'Animation.finished' in that specification. Working Draft Editor's draft.

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet

finished

Experimental'

Chrome

No support No

Edge

No support No

Firefox Full support 63


Full support 63


Full support 46

Disabled'

Disabled' From version 46: this feature is behind the dom.animations-api.core.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.

IE

No support No

Opera

No support No

Safari

No support No

WebView Android

No support No

Chrome Android

No support No

Firefox Android Full support 63


Full support 63


Full support 46

Disabled'

Disabled' From version 46: this feature is behind the dom.animations-api.core.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.

Opera Android

No support No

Safari iOS

No support No

Samsung Internet Android

No support No

Legend

Full support  
Full support
No support  
No support
Experimental. Expect behavior to change in the future.'
Experimental. Expect behavior to change in the future.
User must explicitly enable this feature.'
User must explicitly enable this feature.


See also