2019年11月27日

前端外包之css3动画暂停属性animation-play-state


都说前端很简单,我说,越简单的东西做好越难。

我们经常用css3写一些动画,很是方便,下面普及一个前端开发冷知识,css动画设置暂停 animation-play-state, 你用过吗?

看代码

.play-state {
width: 100px;
height: 100px;
margin: 40px;
text-align: center;
line-height: 94px;
border: 3px solid #e1efde;
border-radius: 50%;
animation: play-state 3s linear infinite;
cursor: pointer;
}

.play-state:hover {
animation-play-state: paused;
}

@keyframes play-state {
0% {
margin-left: 0;
}
100% {
margin-left: 200px;
}
}

微信扫一扫二维码访问


16年前端经验
加微信好友直接沟通
了解《我的前十年》
重要通知
因切图网名称无法覆盖现有业务(前端开发、建站、小程序、新媒体、AI等),现已启用新的名称【跨屏互联】 www.Kuaping.com,感谢您的支持!