CSS animation-iteration-count 属性

CSS animation-iteration-count 属性定义动画在结束前运行的次数 可以是1次 无限循环.

如果指定了多个值,每次播放动画时,将使用列表中的下一个值,在使用最后一个值后循环回第一个值。

通常情况下,使用animation简写属性,来一次性设置所有动画属性会更方便。


实例

播放动画三次:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. div
  6. {
  7. width:100px;
  8. height:100px;
  9. background:red;
  10. position:relative;
  11. animation:mymove 3s;
  12. animation-iteration-count:3;
  13. /* Safari and Chrome */
  14. -webkit-animation:mymove 3s;
  15. -webkit-animation-iteration-count:3;
  16. }
  17. @keyframes mymove
  18. {
  19. from {top:0px;}
  20. to {top:200px;}
  21. }
  22. @-webkit-keyframes mymove /* Safari and Chrome */
  23. {
  24. from {top:0px;}
  25. to {top:200px;}
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <p><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 animation-iteration-count 属性。</p>
  31. <div></div>
  32. </body>
  33. </html>

浏览器支持

表格中的数字注明了完全支持该属性的首个浏览器版本。

带 -webkit-、-moz- 或 -o- 的数字表示使用前缀的首个版本。

属性
animation-iteration-count43.04.0 -webkit-10.016.05.0 -moz-9.04.0 -webkit-30.015.0 -webkit-12.0 -o-

定义和用法

animation-iteration-count 属性定义动画的播放次数。

默认值:1
继承性:no
版本:CSS3
JavaScript 语法:object.style.animationIterationCount=3

语法

  1. animation-iteration-count: n|infinite;
描述
n定义动画播放次数的数值。
infinite规定动画应该无限次播放。

相关页面

CSS3 教程:CSS3 动画

分类导航