CSS3 animation-iteration-count プロパティ
完全な CSS3 リファレンス
例
Play the animation three times:
animation-iteration-count:3;
-webkit-animation-iteration-count:3; /*Safari and Chrome*/ |
Try it yourself »
|
ブラウザ・サポート

animation-iteration-count property is not supported in any browsers.
Safari and Chrome support an alternative, the -webkit-animation-iteration-count
property.
定義と用法
animation-iteration-count property defines how many times an animation should be
played.
| デフォルト値: |
1 |
| 継承: |
no |
| バージョン: |
CSS3 |
| JavaScript構文: |
object.style.animationIterationCount=3 |
構文
| animation-iteration-count: value; |
| Property 値 |
説明 |
| n |
A number that defines how many times an animation should be played |
| infinite |
Specifies that the animation should be played infinite times (for ever) |
関連ページ
CSS3 チュートリアル: CSS3 Animations
完全な CSS3 リファレンス
|