CSS animation-direction 属性

CSS animation-direction 属性指示动画是否反向播放,它通常在简写属性 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:myfirst 5s infinite;
  12. animation-direction:alternate;
  13. /* Safari and Chrome */
  14. -webkit-animation:myfirst 5s infinite;
  15. -webkit-animation-direction:alternate;
  16. }
  17. @keyframes myfirst
  18. {
  19. 0% {background:red; left:0px; top:0px;}
  20. 25% {background:yellow; left:200px; top:0px;}
  21. 50% {background:blue; left:200px; top:200px;}
  22. 75% {background:green; left:0px; top:200px;}
  23. 100% {background:red; left:0px; top:0px;}
  24. }
  25. @-webkit-keyframes myfirst /* Safari and Chrome */
  26. {
  27. 0% {background:red; left:0px; top:0px;}
  28. 25% {background:yellow; left:200px; top:0px;}
  29. 50% {background:blue; left:200px; top:200px;}
  30. 75% {background:green; left:0px; top:200px;}
  31. 100% {background:red; left:0px; top:0px;}
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <p><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 animation-direction 属性。</p>
  37. <div></div>
  38. </body>
  39. </html>

浏览器支持

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

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

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

定义和用法

animation-direction 属性定义是否应该轮流反向播放动画。

如果 animation-direction 值是 "alternate",则动画会在奇数次数(1、3、5 等等)正常播放,而在偶数次数(2、4、6 等等)向后播放。

注释:如果把动画设置为只播放一次,则该属性没有效果。
默认值:normal
继承性:no
版本:CSS3
JavaScript 语法:object.style.animationDirection="alternate"

语法

  1. animation-direction: normal|alternate;
描述
normal默认值。动画应该正常播放。
alternate动画应该交替反向播放。
reverse反向运行动画,每周期结束动画由尾到头运行。
alternate-reverse反向交替, 反向开始交替。

相关页面

CSS3 教程:CSS3 动画

分类导航