CSS animation-play-state 属性,设置动画暂停或运行状态
实例
暂停动画:
div { animation-play-state:paused; -webkit-animation-play-state:paused; /* Safari 和 Chrome */ }
定义和用法
animation-play-state 属性规定动画正在运行还是暂停。
注释:您可以在 JavaScript 中使用该属性,这样就能在播放过程中暂停动画。
语法
animation-play-state: paused|running;
animation-play-state 属性。
发表评论