您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關(guān)animation屬性的使用方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
animation-duration屬性
在CSS3中,我們可以使用animation-duration屬性來設(shè)置動畫的持續(xù)時間,也就是完成從0%到100%所使用的總時間。animation-duration屬性跟CSS3過渡中的transition-duration屬性相似。
語法:
animation-duration:時間;
說明:
animation-duration屬性取值是一個時間,單位為s(秒),可以為小數(shù)如0.5s。
舉例:
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CSS3 animation-duration屬性</title> <style type="text/css"> @-webkit-keyframes mytranslate { 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:1px solid silver; } #div1{-webkit-animation-duration:2s;margin-bottom:10px;} #div2{-webkit-animation-duration:4s;} </style> </head> <body> <div id="container"> <div id="div1"></div> <div id="div2"></div> </div> </body> </html>
效果如下:
分析:
這個例子中,我們設(shè)置#div1的元素動畫持續(xù)時間為2s,而設(shè)置#div2的元素動畫持續(xù)時間為4s。從在線測試中,我們可以明顯看出效果。
這里說一句,CSS3動畫很多時候都是跟CSS3變形結(jié)合起來,然后實現(xiàn)絢麗復(fù)雜的動畫效果。
關(guān)于animation屬性的使用方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發(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)容。