Movatterモバイル変換


[0]ホーム

URL:


MDN Web Docs

ShadowRoot: getAnimations() method

BaselineWidely available

ThegetAnimations() method of theShadowRoot interfacereturns an array of allAnimation objects currently in effect whosetarget elements are descendants of the shadow tree. This array includesCSS Animations,CSS Transitions, andWeb Animations.

Syntax

js
getAnimations()

Parameters

None.

Return value

AnArray ofAnimation objects, each representing oneanimation currently associated with elements which are descendants of theShadowRoot on which it's called.

Examples

The following code snippet will slow down all animations in a shadow tree by halving theirAnimation.playbackRate.

js
let customElem = document.querySelector("my-shadow-dom-element");let shadow = customElem.shadowRoot;shadow.getAnimations().forEach((animation) => {  animation.playbackRate *= 0.5;});

Specifications

Specification
Web Animations
# dom-documentorshadowroot-getanimations

Browser compatibility

See also

Help improve MDN

Learn how to contribute.

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp