ホームページ > 記事 > ウェブフロントエンド > CSSのアニメーション期間プロパティの使用方法
cssのanimation-durationプロパティは、アニメーションがサイクルを完了するのに必要な時間を秒またはミリ秒単位で定義するために使用されます;基本的な構文はanimation-duration:timeです。
CSS アニメーション期間プロパティを使用するにはどうすればよいですか?
関数:animation-duration 属性は、アニメーションがサイクルを完了するのに必要な時間を秒またはミリ秒単位で定義します。
構文:
animation-duration: time
説明: time は、アニメーションが完了するまでにかかる時間を指定します。デフォルト値は 0 で、アニメーション効果がないことを意味します。
注: Internet Explorer 9 以前のバージョンでは、animation-duration 属性がサポートされていません。
css アニメーション期間プロパティの例
<!DOCTYPE html> <html> <head> <style> div { width:100px; height:100px; background:red; position:relative; animation:mymove infinite; animation-duration:2s; /* Safari and Chrome */ -webkit-animation:mymove infinite; -webkit-animation-duration:2s; } @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-name 属性。</p> <div></div> <p><b>注释:</b>始终规定 animation-duration 属性,否则时长为 0,就不会播放动画了。</p> </body> </html>
効果:
以上がCSSのアニメーション期間プロパティの使用方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。