Document: getAnimations() メソッド
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since March 2020.
getAnimations()
メソッドは Document
インターフェイスのメソッドで、この文書の配下にあるターゲット要素にあるすべての Animation
オブジェクトの配列を返します。この配列には CSS アニメーション, CSS トランジション, ウェブアニメーション が含まれます。
構文
js
getAnimations()
引数
なし。
返値
例
次のコードスニペットは、ページ上のすべてのアニメーションの Animation.playbackRate
を半分にすることで速度をゆっくりにします。
js
document.getAnimations().forEach((animation) => {
animation.playbackRate *= 0.5;
});
仕様書
Specification |
---|
Web Animations # dom-documentorshadowroot-getanimations |
ブラウザーの互換性
BCD tables only load in the browser
関連情報
- ウェブアニメーション API
- CSS アニメーション
- CSS トランジション
Element.getAnimations()
- 単一の要素 (Element
) とその子孫にあるアニメーションのみを読み取るAnimation