ホームページ > 記事 > ウェブフロントエンド > css3はアニメーションを一度しか実装できませんか?
css3 ではアニメーションを 1 回だけ実現するのではなく、「animation-iteration-count」属性を使用してアニメーションの再生回数を定義することができます。この属性値を無限に設定すると、回数が制限されます。再生されるアニメーションは無制限で、構文は「animation-iteration-count:play count」です。
このチュートリアルの動作環境: Windows 10 システム、CSS3&&HTML5 バージョン、Dell G3 コンピューター。
css3 で実現できるアニメーションは 1 つだけですか?
animation-iteration-count を使用するだけです。
animation-iteration-count プロパティは、アニメーションを再生する回数を定義します。デフォルト値は 1 です。
構文
animation-iteration-count: value;
n アニメーションの再生回数を定義する数値
infinite アニメーションを再生する回数を指定します。無限に再生する必要があります (永久)
例は次のとおりです:
<html> <head> <meta charset="utf-8"> <title>123</title> <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 及更早 IE 版本浏览器不支持 animation-iteration-count 属性。</p> <div></div> </body> </html>
出力結果:
(学習ビデオ共有: CSS ビデオ チュートリアル )
以上がcss3はアニメーションを一度しか実装できませんか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。