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 |