Path: blob/main/files/en-us/web/api/animation/finished/index.md
6538 views
------{{ APIRef("Web Animations") }}
The Animation.finished read-only property of the Web Animations API returns a {{jsxref("Promise")}} which resolves once the animation has finished playing.
Note: Every time the animation leaves the
finishedplay state (that is, when it starts playing again), a newPromiseis created for this property. The newPromisewill resolve once the new animation sequence has completed.
Value
A {{jsxref("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:
Specifications
{{Specifications}}
Browser compatibility
{{Compat}}
See also
{{domxref("KeyframeEffect")}}
{{domxref("Animation")}}