ホームページ > 記事 > ウェブフロントエンド > CSSのanimation-iteration-countプロパティの使い方
css anime-iteration-count 属性は、アニメーションの再生回数を定義するために使用されます。animation-iteration-count 属性の値を無限に設定すると、アニメーションの無限ループ再生が有効になります。
#CSS アニメーション反復数プロパティを使用するにはどうすればよいですか?
関数:animation-iteration-count 属性は、アニメーションが再生される回数を定義します。
構文:
animation-iteration-count: n|infinite;
説明: n アニメーションの再生回数を定義します。無限は、アニメーションを無限に再生することを指定します。
注: Internet Explorer 9 以前のバージョンでは、animation-iteration-count プロパティがサポートされていません。
css anime-iteration-count プロパティの使用例
<!DOCTYPE html> <html> <head> <style> div { width:100px; height:100px; background:red; position:relative; animation:mymove 3s; animation-iteration-count:3; /* Safari and Chrome */ -webkit-animation:mymove 3s; -webkit-animation-iteration-count:3; } @keyframes mymove { from {top:0px;} to {top:200px;} } @-webkit-keyframes mymove /* Safari and Chrome */ { from {top:0px;} to {top:200px;} } </style> </head> <body> <p><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 animation-iteration-count 属性。</p> <div></div> </body> </html>
Effect:
以上がCSSのanimation-iteration-countプロパティの使い方の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。