diff --git a/files/ja/web/css/guides/animations/index.md b/files/ja/web/css/guides/animations/index.md index 44426e2fbcfc6f..1c1ef16218ae98 100644 --- a/files/ja/web/css/guides/animations/index.md +++ b/files/ja/web/css/guides/animations/index.md @@ -1,14 +1,14 @@ --- title: CSS アニメーション +short-title: アニメーション slug: Web/CSS/Guides/Animations -original_slug: Web/CSS/CSS_animations l10n: - sourceCommit: f65f7f6e4fda2cb1bd0e7db17777e2cb20be7d27 + sourceCommit: 81f8fcd666952c1782653a3675347c392cc997ca --- **CSS アニメーション** (CSS animations) モジュールを使用すると、キーフレームを使用して、background-position や transform などの CSS プロパティの値を、時間に応じてアニメーションさせることができます。各キーフレームは、アニメーションシーケンスの指定された時間に、アニメーションする要素をどのようにレンダリングするかを記述します。アニメーションモジュールでは、アニメーションの再生時間、繰り返し回数、開始の遅延、その他のアニメーションの要素を制御するためのプロパティを使用することができます。 -### アニメーションの実際 +## アニメーションの実際 下のボックスでアニメーションを見るには、 'Play the animation' チェックボックスをクリックするか、ボックスにカーソルを当てるかしてください。アニメーションが有効になると、上部の雲の図形が変わり、雪片が降り、下部の雪の高さが高くなります。アニメーションを一時停止するには、チェックボックスのチェックを外すか、ボックスからカーソルを離してください。 @@ -18,7 +18,7 @@ l10n: type="checkbox" id="animate" aria-label="アニメーションの再生状態をトグル切り替え" /> - +
[!NOTE] -> CSS Animations モジュールレベル 2 では、 `animation-trigger`, `animation-trigger-exit-range`, `animation-trigger-exit-range-end`, `animation-trigger-exit-range-start`, `animation-trigger-range`, `animation-trigger-range-end`, `animation-trigger-range-start`, `animation-trigger-timeline`, `animation-trigger-type` の各プロパティを導入しています。これらはまだ実装されていません。 +> CSS animations モジュールレベル 2 では、 `animation-trigger`, `animation-trigger-exit-range`, `animation-trigger-exit-range-end`, `animation-trigger-exit-range-start`, `animation-trigger-range`, `animation-trigger-range-end`, `animation-trigger-range-start`, `animation-trigger-timeline`, `animation-trigger-type` の各プロパティを導入しています。これらはまだ実装されていません。 -### アットルール +### アットルールと記述子 - {{cssxref("@keyframes")}} @@ -270,6 +270,8 @@ input:checked + label::before { - [CSS アニメーションの使用](/ja/docs/Web/CSS/Guides/Animations/Using) - : CSS を使用してアニメーションを作成する方法についての一歩一歩進むチュートリアルです。この記事では、関連する CSS プロパティとアットルール、それに互いにどのように関係するのかを説明します。 +- [アニメーション可能な CSS プロパティ](/ja/docs/Web/CSS/Guides/Animations/Animatable_properties) + - : さまざまな CSS プロパティをアニメーション化する方法の概要。アニメーションの種類と補間手法を含みます。 - [ウェブアニメーション API の使用](/ja/docs/Web/API/Web_Animations_API/Using_the_Web_Animations_API) - : JavaScript で数行で解決できる一般的なアニメーションの要件です。