A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/en-US/docs/Web/API/Animation/finished below:

Animation: finished property - Web APIs

Animation: finished property

Baseline Widely available

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

Note: 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.

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((animation) => animation.finished)).then(
  () => elem.remove(),
);
Specifications Browser compatibility See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4