首页 > 编程开发 > CSS    日期:2022-01-20 / 来自互联网 / 浏览

在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>

css3如何让animation动画停止

想要让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;
}

css3如何让animation动画停止

说明:

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

语法:

animation-play-state: paused|running;
  • paused:规定动画已暂停。

  • running:规定动画正在播放。

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

觉得上面的内容有用吗?快来点个赞吧!

点赞() 我要打赏

温馨提示 : 本站内容来自会员投稿以及互联网,所有源码及教程均为作者总结编辑,请大家在使用过程中提前做好备份,以免发生无法预知的错误,源码类教程请勿直接用于生产环境!

 可能感兴趣的文章

1 2 3 4 5