在css3中,可以利用animation-iteration-count屬性來設定動畫執行一次,該屬性的作用就是定義動畫的播放次數;當animation-iteration-count屬性的值設定為數字“1”時,即可設定動畫只播放一次。
本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
在css3中,可以利用animation-iteration-count屬性來設定動畫執行一次。
animation-iteration-count屬性可以定義動畫的播放次數,設定動畫應該播放幾次。
語法:
animation-iteration-count: value;
值 | 描述 |
---|---|
n | 一個數字,定義應該播放多少次動畫 |
infinite | #指定動畫應該播放無限次(永遠) |
範例:
設定動畫只播放一次
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> div { width: 100px; height: 100px; background: red; position: relative; animation: mymove 3s; animation-iteration-count: 1; /* Safari and Chrome */ -webkit-animation: mymove 3s; -webkit-animation-iteration-count: 1; } @keyframes mymove { from { top: 0px; } to { top: 200px; } } @-webkit-keyframes mymove /* Safari and Chrome */ { from { top: 0px; } to { top: 200px; } } </style> </head> <body> <div></div> </body> </html>
修改一下,設定動畫播放3次
div { width: 100px; height: 100px; background: red; position: relative; animation: mymove 3s; animation-iteration-count: 3; /* Safari and Chrome */ -webkit-animation: mymove 3s; -webkit-animation-iteration-count: 3; }
(學習影片分享:css影片教學)
以上是css3動畫怎麼設定執行一次的詳細內容。更多資訊請關注PHP中文網其他相關文章!