animation

英[ˌænɪˈmeɪʃn]   美[ˌænəˈmeʃən]  

n.生氣,活潑;卡通製作,卡通攝製;[影視]卡通片

複數: animations

delay

英[dɪˈleɪ]   美[dɪˈle]  

#n.耽;延遲,拖延;被擱架」延遲,拖延;被擱架;耽擱或推遲的時間

vt.耽擱;延期,推遲

vi.延緩,延期

第三人稱單數: delays 現在分詞: delaying 過去式: delayed 過去分詞: delayed

css animation-delay屬性 語法

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>

執行實例 »

點擊 "執行實例" 按鈕查看線上實例