css3 animation屬性是一個簡寫屬性,透過設定六個動畫屬性來實現動畫效果。這六個屬性分別為動畫名稱、動畫時間、速度曲線、動畫延遲、播放次數、動畫是否反向播放。
css3 animation屬性
animation 屬性是一個簡寫屬性,用來設定六個動畫屬性。
語法:
animation: name duration timing-function delay iteration-count direction;
說明:animation 屬性可以設定的六個動畫屬性分別為:
● animation- name:規定需要綁定到選擇器的keyframe 名稱。
● animation-duration:規定完成動畫所花費的時間,以秒或毫秒計。
● animation-timing-function :規定動畫的速度曲線。
● animation-delay:規定在動畫開始前的延遲。
● animation-iteration-count:規定動畫應該播放的次數。
● animation-direction:規定是否應該輪流反向播放動畫。
註:需隨時設定 animation-duration 屬性,否則當時長度為 0時,就不會播放動畫了。
css3 animation屬性的使用範例
<!DOCTYPE html> <html> <head> <style> div { width:100px; height:100px; background:red; position:relative; animation:mymove 5s infinite; -webkit-animation:mymove 5s infinite; /*Safari and Chrome*/ } @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 属性。</p> <div></div> </body> </html>
效果圖:
以上是css3 animation屬性怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!