From 2993a0f4b8e03c372a22eff4b082409eeff40d91 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sun, 23 Nov 2025 17:46:07 +0900 Subject: [PATCH] =?UTF-8?q?2025/11/18=20=E6=99=82=E7=82=B9=E3=81=AE?= =?UTF-8?q?=E8=8B=B1=E8=AA=9E=E7=89=88=E3=81=AB=E5=9F=BA=E3=81=A5=E3=81=8D?= =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/css/guides/animations/index.md | 40 +++++++++++---------- 1 file changed, 21 insertions(+), 19 deletions(-) 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 で数行で解決できる一般的なアニメーションの要件です。