--- title: animation-play-state slug: Web/CSS/animation-play-state tags: - CSS - CSS アニメーション - CSS プロパティ - Reference translation_of: Web/CSS/animation-play-state ---
CSS の animation-play-state
プロパティは、アニメーションが実行中か停止中かを設定します。
このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 https://github.com/mdn/interactive-examples をクローンしてプルリクエストを送信してください。
停止したアニメーションを再開すると、アニメーションの流れの最初からではなく、停止した位置からアニメーションが始まります。
/* 単一のアニメーション */ 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')}} | 初回定義 |
このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 https://github.com/mdn/browser-compat-data をチェックアウトしてプルリクエストを送信してください。
{{Compat("css.properties.animation-play-state")}}