Skip to content

Commit

Permalink
2023/07/18 時点の英語版に基づき更新
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Oct 4, 2024
1 parent fb2c40e commit 8c1df31
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions files/ja/web/api/shadowroot/getanimations/index.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
---
title: ShadowRoot.getAnimations()
title: "ShadowRoot: getAnimations() メソッド"
short-title: getAnimations()
slug: Web/API/ShadowRoot/getAnimations
l10n:
sourceCommit: 76717f752447b6eef25bf29c12272e407ee5cb6b
---

{{APIRef("Web Animations")}}

**`getAnimations()`** は {{domxref("ShadowRoot")}} のメソッドで、ターゲット要素がシャドウツリーの子孫である、現在有効なすべての {{domxref("Animation")}} オブジェクトの配列を返します。この配列には [CSS アニメーション](/ja/docs/Web/CSS/CSS_Animations)[CSS トランジション](/ja/docs/Web/CSS/CSS_Transitions)[ウェブアニメーション](/ja/docs/Web/API/Web_Animations_API) が含まれています。
**`getAnimations()`** は {{domxref("ShadowRoot")}} のメソッドで、ターゲット要素がシャドウツリーの子孫である、現在有効なすべての {{domxref("Animation")}} オブジェクトの配列を返します。この配列には [CSS アニメーション](/ja/docs/Web/CSS/CSS_animations)[CSS トランジション](/ja/docs/Web/CSS/CSS_transitions)[ウェブアニメーション](/ja/docs/Web/API/Web_Animations_API) が含まれています。

## 構文

```js
getAnimations();
```js-nolint
getAnimations()
```

### 引数
Expand All @@ -28,7 +31,7 @@ getAnimations();
```js
let customElem = document.querySelector("my-shadow-dom-element");
let shadow = customElem.shadowRoot;
shadow.getAnimations().forEach(function (animation) {
shadow.getAnimations().forEach((animation) => {
animation.playbackRate *= 0.5;
});
```
Expand All @@ -44,8 +47,8 @@ shadow.getAnimations().forEach(function (animation) {
## 関連情報

- [Web Animations API](/ja/docs/Web/API/Web_Animations_API)
- [CSS アニメーション](/ja/docs/Web/CSS/CSS_Animations)
- [CSS トランジション](/ja/docs/Web/CSS/CSS_Transitions)
- [CSS アニメーション](/ja/docs/Web/CSS/CSS_animations)
- [CSS トランジション](/ja/docs/Web/CSS/CSS_transitions)
- {{domxref("Element.getAnimations()")}} - 単一の
{{domxref("Element")}} とその配下のアニメーションのみを読み取ります。
- {{domxref("Animation")}}

0 comments on commit 8c1df31

Please sign in to comment.