CSS3 animation-play-state
属性
说明
animation-play-state
属性指定动画是正在播放还是暂停。
下表总结了此属性的使用上下文和版本历史记录。
语法
属性的语法如下:
下面的示例显示了 animation-play-state
属性的作用。
.box {
width: 50px;
height: 50px;
background: red;
position: relative;
/* Chrome, Safari, Opera */
-webkit-animation-name: moveit;
-webkit-animation-duration: 2s;
-webkit-animation-play-state: paused;
/* 标准语法 */
animation-name: moveit;
animation-duration: 2s;
animation-play-state: paused;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes moveit {
from {left: 0;}
to {left: 50%;}
}
/* 标准语法 */
@keyframes moveit {
from {left: 0;}
to {left: 50%;}
}
属性值
下表描述了该属性的值。
值 | 说明 |
---|---|
paused |
指定动画当前暂停。 |
running |
指定动画当前正在运行。 这是默认值。 |
initial |
将此属性设置为其默认值。 |
inherit |
如果指定,则关联元素采用其父元素 animation-play-state 属性的 计算值。 |
注意: 您可以将 animation-play-state
CSS 属性与 JavaScript 结合使用,以在循环中间暂停动画。
浏览器兼容性
所有主要的现代浏览器都支持 animation-play-state
属性。
基本支持—
|
进一步阅读
请参阅以下教程: CSS3 动画.
相关属性和规则: animation-name
, animation-duration
, animation-timing-function
, animation-delay
, animation-iteration-count
, animation-direction
, animation-fill-mode
, animation-play-state
, @keyframes
.
Advertisements