--- 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")}}

関連情報