CSS3 animation-play-state プロパティ
完全な CSS3 リファレンス
例
Pause an animation:
animation-play-state:paused;
-webkit-animation-play-state:paused; /*Safari and Chrome*/ |
Try it yourself »
|
ブラウザ・サポート

animation-play-state property is not supported in any browsers.
Safari and Chrome support an alternative, the -webkit-animation-play-state property.
定義と用法
animation-play-state property specifies whether the animation is running
or paused.
注: Use this property in a JavaScript to pause an animation in the
middle of a cycle.
| デフォルト値: |
running |
| 継承: |
no |
| バージョン: |
CSS3 |
| JavaScript構文: |
object.style.animationPlayState="paused" |
構文
| animation-play-state: paused|running; |
| 値 |
説明 |
| paused |
Specifies that the animation is paused |
| running |
Specifies that the animation is running |
関連ページ
CSS3 チュートリアル: CSS3 Animations
完全な CSS3 リファレンス
|