首页·CSS 属性

animation-play-state

变形与动效

让动画暂停,或者继续播放。

怎么写animation-play-state: running;
常用的值running, paused
继承不往下传,到这个元素为止
分类变形与动效

怎么看这一页

  • 会继承的属性,在父元素上写一次,所有子元素都跟着用。和文字有关的属性大多如此。
  • 简写属性会把你没写到的值悄悄退回默认值。只写 background: red,先前设的背景图也一并没了。
  • 同一个元素上规则撞车时,选择器越具体的赢。只有具体度一样时,才轮到写在后面的赢。
  • 做动效尽量用 transform 和 opacity,会顺滑得多。改 width 或 top 得重新算一遍布局。

常见问题

Q. CSS 的 animation-play-state 属性是做什么的?

让动画暂停,或者继续播放。

Q. animation-play-state 怎么写?

写成 animation-play-state: running; 这样。常用的值有 running、paused 等。

Q. animation-play-state 会传给子元素吗?

不会。需要的元素得各写各的。

Q. animation-play-state 属于哪一类?

属于变形与动效这一类。

同一类的属性

标准文档