在css3中,可用animation- play - stat e属性来让运行的animation动画停止,该属性的作用就是规定动画正在运行还是 暂停 ,只需要给应用了动画的元素添加“animation-play -s tate:paused;”样式即可。
本教程操作环境:windows7系统、CSS3 && HT ML 5版、Dell G3 电 脑。
在css3中,可用animation-play-state属性来让运行的animation动画停止。
例如:有这么一个 不断 旋转的动画:
<!DOCTY PE html>
<html>
<head>
<style>
div {
width: 100px;
h ei ght: 100px;
background-color: red ;
m arg in: 50px auto;
animation: mymove 1s linear infin IT e;
}
@keyfr am es mymove {
100% {
transform: rotate( 360 deg );
}
}
@- webkit -keyframes mymove {/* Safari and Ch rom e */
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;
mar gin : 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动画停止的详细内容,更多请关注其它相关 文章 !
总结
以上是 为你收集整理的 css3如何让animation动画停止 全部内容,希望文章能够帮你解决 css3如何让animation动画停止 所遇到的问题。
如果觉得 网站内容还不错, 推荐好友。
查看更多关于css3如何让animation动画停止的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did200619