css animation-delay屬性定義動畫何時開始,基本語法為:animation-delay: time。其中time值以秒(s)或毫秒(ms)計時;允許負值。
css animation-delay屬性怎麼用?
animation-delay 屬性定義動畫何時開始,基本語法為:animation-delay: time。其中time值以秒(s)或毫秒(ms)計時;允許負值,例:-2s 使動畫馬上開始,但跳過 2 秒進入動畫。
作用:animation-delay 屬性定義動畫何時開始。 animation-delay 值以秒或毫秒計。
語法:
animation-delay: time;
說明:time 可選。定義動畫開始前等待的時間,以秒或毫秒計。預設值是 0,允許負值,例:-2s 使動畫馬上開始,但跳過 2 秒進入動畫。
註解:Internet Explorer 9 以及更早的版本不支援 animation-delay 屬性。
css animation-delay屬性 範例
<!DOCTYPE html> <html> <head> <style> div { width:100px; height:100px; background:red; position:relative; animation:mymove 5s infinite; animation-delay:2s; /*Safari and Chrome*/ -webkit-animation:mymove 5s infinite; -webkit-animation-delay:2s; } @keyframes mymove { from {left:0px;} to {left:200px;} } @-webkit-keyframes mymove /*Safari and Chrome*/ { from {left:0px;} to {left:200px;} } </style> </head> <body> <p><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 animation-delay 属性。</p> <div></div> </body> </html>
效果輸出:
以上是css animation-delay屬性怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!