Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Animation.finished

This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage 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 specification changes.

The Animation.finished read-only property of the Web Animations API allows you to return the finished state of the animation so that further code can be run after it has finished.

Note: The Promise is replaced with a new (pending) Promise object every time the animation leaves the finished play state.

Syntax

var animationsPromise = animation.finished;

Value

A Promise object.

Examples

The following code waits until all animations have finished before removing the element they are active on:

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

Specifications

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

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support No support No support No support No support No support
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support No support No support No support No support No support

 

See also

Document Tags and Contributors

 Contributors to this page: birtles, chrisdavidmills, rachelnabors
 Last updated by: birtles,