css3如何让animation动画停止

广告:宝塔Linux面板高效运维的服务器管理软件 点击【 https://www.bt.cn/p/uNLv1L 】立即购买

css3如何让animation动画停止

在css3中,可用animation-play-state属性来让运行的animation动画停止,该属性的作用就是规定动画正在运行还是暂停,只需要给应用了动画的元素添加“animation-play-state:paused;”样式即可。

本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。

在css3中,可用animation-play-state属性来让运行的animation动画停止。

例如:有这么一个不断旋转的动画:

<!DOCTYPE html><html><head><style>div {width: 100px;height: 100px;background-color: red;margin: 50px auto;animation: mymove 1s linear infinite;}@keyframes mymove {100% {transform: rotate(360deg);}}@-webkit-keyframes mymove {/* Safari and Chrome */100% {transform: rotate(360deg);}}</style></head><body><div class="box"></div></body></html>
登录后复制

想要让div元素停止旋转,可以给div元素设置animation-play-state属性来

div {width: 100px;height: 100px;background-color: red;margin: 50px auto;animation: mymove 1s linear infinite;animation-play-state:paused;}
登录后复制

说明:

animation-play-state 属性规定动画正在运行还是暂停。

语法:

animation-play-state: paused|running;
登录后复制

paused:规定动画已暂停。

running:规定动画正在播放。

该属性可以和JavaScript一起使用,用于在播放过程中暂停动画。

(学习视频分享:css视频教程)

以上就是css3如何让animation动画停止的详细内容,更多请关注9543建站博客其它相关文章!

广告:SSL证书一年128.66元起,点击购买~~~

9543建站博客
一个专注于网站开发、微信开发的技术类纯净博客。

作者头像
admin创始人

肥猫,知名SEO博客站长,14年SEO经验。

上一篇:微信封面红包怎么注册申请与设置制作(2021最新视频+图文)
下一篇:html5中布尔属性的hidden

发表评论

关闭广告
关闭广告