animation-delay屬性是用來定義動畫何時開始,以秒或毫秒為單位;使用animation-delay屬性可以自訂動畫的延遲效果。
CSS3 animation-delay屬性
作用:animation -delay 屬性定義動畫何時開始。 animation-delay 值以秒或毫秒計。
語法:
animation-delay: time;
time:可省略,預設值是 0;用來定義動畫開始前等待的時間,以秒或毫秒計。
說明:time允許為負值,-2s讓動畫馬上開始,但跳過 2 秒進入動畫。
註:Internet Explorer 9 以及更早的版本不支援 animation-delay 屬性。
CSS3 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> <div></div> </body> </html>
效果圖:
以上就是本篇文章的全部內容,希望能對大家的學習有所幫助。更多精彩內容大家可以追蹤php中文網相關教學欄位! ! !
以上是animation-delay屬性怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!