animation-duration 属性は、アニメーションがサイクルを完了するのに必要な時間を秒またはミリ秒で定義するために使用されます。値が 0 の場合、アニメーション効果がないことを意味します。
#CSS3 アニメーション期間プロパティ
関数: アニメーション期間プロパティアニメーションが 1 サイクルを完了するのにかかる時間を秒またはミリ秒で定義します。
構文:
animation-duration: time
注: Internet Explorer 9 以前のバージョンでは、animation-duration 属性がサポートされていません。
#CSS3 アニメーション継続時間プロパティの使用例<!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>
以上がこの記事の全内容ですが、皆様の学習のお役に立てれば幸いです。さらにエキサイティングなコンテンツについては、PHP 中国語 Web サイトの関連チュートリアルのコラムに注目してください。 ! !
以上がanime-duration 属性はどのような用途に使用されますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。