定义和用法
animation-play-state 属性规定动画正在运行还是暂停。
注释:您可以在 JavaScript 中使用该属性,这样就能在播放过程中暂停动画。
实例
暂停动画:
div
{
animation-play-state:paused;
}
CSS 语法
animation-play-state: paused|running;