您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)css中的animation屬性怎么用的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
animation-duration屬性
在CSS3中,我們可以使用animation-duration屬性來設(shè)置動畫的持續(xù)時間,也就是完成從0%到100%所使用的總時間。animation-duration屬性跟CSS3過渡中的transition-duration屬性相似。
語法:
animation-duration:時間;
說明:
animation-duration屬性取值是一個時間,單位為s(秒),可以為小數(shù)如0.5s。
舉例:
<!DOCTYPEhtml>
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS3animation-duration屬性</title>
<styletype="text/css">
@-webkit-keyframesmytranslate
{
0%{}
100%{-webkit-transform:translateX(100px);}
}
div:not(#container)
{
width:40px;
height:40px;
border-radius:20px;
background-color:red;
-webkit-animation-name:mytranslate;
-webkit-animation-timing-function:linear;
}
#container
{
display:inline-block;
width:140px;
border:1pxsolidsilver;
}
#div1{-webkit-animation-duration:2s;margin-bottom:10px;}
#div2{-webkit-animation-duration:4s;}
</style>
</head>
<body>
<divid="container">
<divid="div1"></div>
<divid="div2"></div>
</div>
</body>
</html>
效果如下:
11-4-1.png
分析:
這個例子中,我們設(shè)置#div1的元素動畫持續(xù)時間為2s,而設(shè)置#div2的元素動畫持續(xù)時間為4s。從在線測試中,我們可以明顯看出效果。
這里說一句,CSS3動畫很多時候都是跟CSS3變形結(jié)合起來,然后實現(xiàn)絢麗復(fù)雜的動畫效果。
感謝各位的閱讀!關(guān)于“css中的animation屬性怎么用”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。