您好,登錄后才能下訂單哦!
這篇文章主要介紹了css3怎么實現動畫只循環一次的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇css3怎么實現動畫只循環一次文章都會有所收獲,下面我們一起來看看吧。
css3動畫只循環一次用“animation-iteration-count”屬性設置,該屬性可以規定動畫的執行次數,當該屬性的值為1時,可設置動畫只循環一次;語法“元素{animation-iteration-count:1;}”。
本教程操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
css3動畫只循環一次用animation-iteration-count
屬性設置。
animation-iteration-count屬性可以規定動畫的執行次數,定義動畫應該播放多少次。
當該屬性的值為1時,可設置動畫只循環一次。
示例:
<!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 { 0% { top: 0px; } 50% { top: 200px; } 100% { top: 0px; } } @-webkit-keyframes mymove{ /* Safari and Chrome */ 0% { top: 0px; } 50% { top: 200px; } 100% { top: 0px; } } </style> </head> <body> <div></div> </body> </html>
關于“css3怎么實現動畫只循環一次”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“css3怎么實現動畫只循環一次”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。