animation
英[ˌænɪˈmeɪʃn] 美[ˌænəˈmeʃən]
n.生氣,活潑;卡通製作,卡通攝製;[影視]卡通片
複數: animations
direction
英[dəˈrekʃn] 美[dɪˈrɛkʃən, daɪ-]
##n.方向趨勢;方面;用法說明複數: directions
CSS動畫方向屬性 語法
animation-direction屬性怎麼用?
animation-direction屬性是用來定義是否應該輪流反向播放動畫的;當動畫播放次數超過一次時,我們就可以透過設定animation-direction的值為alternate來實現動畫輪流反向播放。
作用:定義是否應該輪流反向播放動畫。
語法:animation-direction: normal|alternate;
說明:normal 預設值。動畫應該可以正常播放。 alternate 動畫應該輪流反向播放。
註解:如果動畫設定為只播放一次,則該屬性沒有效果。
CSS動畫方向屬性 範例
<!DOCTYPE html> <html> <head> <style> div { width:100px; height:100px; background:red; position:relative; animation:myfirst 5s infinite; animation-direction:alternate; /* Safari and Chrome */ -webkit-animation:myfirst 5s infinite; -webkit-animation-direction:alternate; } @keyframes myfirst { 0% {background:red; left:0px; top:0px;} 25% {background:yellow; left:200px; top:0px;} 50% {background:blue; left:200px; top:200px;} 75% {background:green; left:0px; top:200px;} 100% {background:red; left:0px; top:0px;} } @-webkit-keyframes myfirst /* Safari and Chrome */ { 0% {background:red; left:0px; top:0px;} 25% {background:yellow; left:200px; top:0px;} 50% {background:blue; left:200px; top:200px;} 75% {background:green; left:0px; top:200px;} 100% {background:red; left:0px; top:0px;} } </style> </head> <body> <p><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 animation-direction 属性。</p> <div></div> </body> </html>
執行實例 »
點擊 "執行實例" 按鈕查看線上實例