From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/css/animation-play-state/index.html | 90 ++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 files/ja/web/css/animation-play-state/index.html (limited to 'files/ja/web/css/animation-play-state') diff --git a/files/ja/web/css/animation-play-state/index.html b/files/ja/web/css/animation-play-state/index.html new file mode 100644 index 0000000000..7d0ce0296d --- /dev/null +++ b/files/ja/web/css/animation-play-state/index.html @@ -0,0 +1,90 @@ +--- +title: animation-play-state +slug: Web/CSS/animation-play-state +tags: + - CSS + - CSS アニメーション + - CSS プロパティ + - Reference +translation_of: Web/CSS/animation-play-state +--- +
{{CSSRef}}
+ +

CSSanimation-play-state プロパティは、アニメーションが実行中か停止中かを設定します。

+ +
{{EmbedInteractiveExample("pages/css/animation-play-state.html")}}
+ + + +

停止したアニメーションを再開すると、アニメーションの流れの最初からではなく、停止した位置からアニメーションが始まります。

+ +

構文

+ +
/* 単一のアニメーション */
+animation-play-state: running;
+animation-play-state: paused;
+
+/* 複数のアニメーション */
+animation-play-state: paused, running, running;
+
+/* グローバル値 */
+animation-play-state: inherit;
+animation-play-state: initial;
+animation-play-state: unset;
+
+ +

+ +
+
running
+
アニメーションが現在実行中です。
+
paused
+
アニメーションが現在停止中です。
+
+ +
+

メモ: animation-* プロパティにコンマ区切りで複数の値を指定した場合、 {{cssxref("animation-name")}} プロパティで指定したアニメーションに割り当てられますが、いくつあるかによって異なる方法で割り当てられます。詳しくは、複数のアニメーションプロパティ値の設定 を参照してください。

+
+ +

形式文法

+ +
{{csssyntax}}
+
+ +

{{cssinfo}}

+ +

+ +

例は CSS アニメーションを参照してください。

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('CSS3 Animations', '#animation-play-state', 'animation-play-state')}}{{Spec2('CSS3 Animations')}}初回定義
+ +

ブラウザーの対応

+ + + +

{{Compat("css.properties.animation-play-state")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf