css animation-iteration-count屬性是用來定義動畫播放次數的;設定animation-iteration-count屬性的值為infinite,就可實現動畫的無限循環播放。
css animation-iteration-count屬性怎麼用?
作用:animation-iteration-count 屬性定義動畫的播放次數。
語法:
animation-iteration-count: n|infinite;
說明:n 定義動畫播放次數的數值。 infinite 規定動畫應該無限次播放。
註解:Internet Explorer 9 以及更早的版本不支援 animation-iteration-count 屬性。
css animation-iteration-count屬性使用範例
<!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>
效果:
##
以上是css animation-iteration-count屬性怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!