animation
英[ˌænɪˈmeɪʃn] 美[ˌænəˈmeʃən]
n.生氣,活潑;卡通製作,卡通攝製;[影視]卡通片
複數: animations
duration
英[djuˈreɪʃn] 美[duˈreɪʃn]
n.持續,持續的時間,期間期間;(時間的)持續,持久,連續;[語音學]音長,音延
複數: durations
CSS3動畫持續時間屬性 語法
作用:animation-duration 屬性定義動畫完成一個週期所需的時間,以秒或毫秒計。
語法:animation-duration: time
#說明:time 規定完成動畫所花費的時間。預設值是 0,意味著沒有動畫效果。
註解:Internet Explorer 9 以及更早的版本不支援 animation-duration 屬性。
設定完成動畫所花費的時間可以透過CSS3中animation-duration屬性來設定。以秒或毫秒為單位,它的預設值為0,表示無動畫效果
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>
執行實例 »
點擊 "執行實例" 按鈕查看線上實例