animation-direction屬性是用來定義是否應該輪流反向播放動畫的;當動畫播放次數超過一次時,我們就可以透過設定animation-direction的值為alternate來實現動畫輪流反向播放。
CSS3 animation-direction屬性
作用:定義是否應該輪流反向播放動畫。
語法:
animation-direction: normal|alternate;
normal:預設值。動畫應該可以正常播放。
alternate:動畫應該輪流反向播放。
說明: 如果animation-direction 值是"alternate",動畫會在奇數次數(1、3、5 等等)正常播放,而在偶數次數(2、4 、6 等等)向後播放。
註:如果把動畫設定為只播放一次,則該屬性沒有效果。
CSS3 animation-direction屬性的使用範例
<!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> <div></div> </body> </html>
效果圖:
以上就是本篇文章的全部內容,希望能對大家的學習有所幫助。更多精彩內容大家可以追蹤php中文網相關教學欄位! ! !
以上是animation-direction屬性怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!