css3動畫不循環可以使用animation-iteration-count屬性定義動畫的播放次數。只需要在動畫中加入「animation-iteration-count:infinite;」即可實現無限次循環。
本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
animation-iteration-count 屬性定義動畫的播放次數。
語法
animation-iteration-count: n|infinite;
實例
<!DOCTYPE html> <html> <head> <style> 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; } @keyframes mymove { from {top:0px;} to {top:200px;} } @-webkit-keyframes mymove /* Safari and Chrome */ { from {top:0px;} to {top:200px;} } </style> </head> <body> <p><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 animation-iteration-count 属性。</p> <div></div> </body> </html>
效果:
##推薦學習:以上是css3動畫不循環怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!