首頁  >  文章  >  web前端  >  css3動畫不循環怎麼辦

css3動畫不循環怎麼辦

醉折花枝作酒筹
醉折花枝作酒筹原創
2021-07-23 11:38:563151瀏覽

css3動畫不循環可以使用animation-iteration-count屬性定義動畫的播放次數。只需要在動畫中加入「animation-iteration-count:infinite;」即可實現無限次循環。

css3動畫不循環怎麼辦

本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。

animation-iteration-count 屬性定義動畫的播放次數。

語法

animation-iteration-count: n|infinite;

css3動畫不循環怎麼辦

實例

<!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動畫不循環怎麼辦

##推薦學習:

css影片教學

以上是css3動畫不循環怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
上一篇:css怎麼旋轉下一篇:css怎麼旋轉