ホーム HTML CSS XML JAVASCRIPT   PHP SQL MORE...   リファレンス 事例集    

CSS3 animation-iteration-count プロパティ

CSS3 Reference 完全な CSS3 リファレンス

Play the animation three times:

animation-iteration-count:3;
-webkit-animation-iteration-count:3; /*Safari and Chrome*/

Try it yourself »

ブラウザ・サポート

Internet Explorer Firefox Opera Google Chrome Safari

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 Reference 完全な CSS3 リファレンス