CSS animation-play-state 属性

CSS animation-play-state 属性定义一个动画是否运行或者暂停。可以通过查询它来确定动画是否正在运行。另外,它的值可以被设置为暂停和恢复的动画的重放。

恢复一个已暂停的动画,将从它开始暂停的时候,而不是从动画序列的起点开始在动画。


实例

暂停动画:

  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 5s;
  12. animation-play-state:paused;
  13. /* Safari and Chrome */
  14. -webkit-animation:mymove 5s;
  15. -webkit-animation-play-state:paused;
  16. }
  17. @keyframes mymove
  18. {
  19. from {left:0px;}
  20. to {left:200px;}
  21. }
  22. @-webkit-keyframes mymove /* Safari and Chrome */
  23. {
  24. from {left:0px;}
  25. to {left:200px;}
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <p><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 animation-play-state 属性。</p>
  31. <div></div>
  32. </body>
  33. </html>

浏览器支持

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

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

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

定义和用法

animation-play-state 属性规定动画正在运行还是暂停。

注释:您可以在 JavaScript 中使用该属性,这样就能在播放过程中暂停动画。

默认值:running
继承性:no
版本:CSS3
JavaScript 语法:object.style.animationPlayState="paused"

语法

  1. animation-play-state: paused|running;
描述
paused规定动画已暂停。
running规定动画正在播放。

相关页面

CSS3 教程:CSS3 动画

分类导航