CSS3 animation-iteration-count

admin發表於2018-07-27

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

更多關於animation動畫可以參閱CSS3 animation一章節。

語法結構:

[CSS] 純文字檢視 複製程式碼
animation-iteration-count:infinite | <number> [ , infinite | <number> ]*

引數解析:

(1).infinite:規定動畫可以無限迴圈。

(2).number:明確指定動畫迴圈的次數。

特別說明:如果提供多個屬性值,以逗號進行分隔。

程式碼例項:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>    
<html>    
<head>    
<meta charset=" utf-8">    
<meta name="author" content="http://www.softwhy.com/" />    
<title>螞蟻部落</title>   
<style type="text/css">   
div{  
  width:100px;  
  height:100px;  
  background:red;  
  position:relative;   
  animation:theanimation infinite alternate;  
  animation-duration:8s; 
  animation-iteration-count:infinite;
}  
@keyframes theanimation{  
  0%{top:0px;left:0px;background:red;}  
  25%{top:0px;left:100px;background:blue;}  
  50%{top:100px;left:100px;background:yellow;}  
  75%{top:100px;left:0px;background:green;}  
  100%{top:0px;left:0px;background:red;}  
}  
</style>  
</head>  
<body>  
<div></div>  
</body>  
</html>

以上程式碼設定動畫可以無限迴圈。

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>    
<html>    
<head>    
<meta charset=" utf-8">    
<meta name="author" content="http://www.softwhy.com/" />    
<title>螞蟻部落</title>   
<style type="text/css">   
div{  
  width:100px;  
  height:100px;  
  background:red;  
  position:relative;  
       
  animation:ant-1 5s alternate,ant-2 2s  alternate;  
  animation-iteration-count:infinite,2; 
} 
@keyframes ant-1{  
  0% {left:0px;}  
  100% {left:200px;}  
}  

 
@keyframes ant-2{  
  0% {top:0px;}  
  100% {top:200px;}  
}   
</style>  
</head>  
<body>  
<div></div>  
</body>  
</html>

上面程式碼使用animation-iteration-count屬性規定了兩個引數,也就是兩個動畫的執行次數。