我是靠谱客的博主 传统蜗牛,最近开发中收集的这篇文章主要介绍css3如何让animation动画停止,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

本教程操作环境: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>
登录后复制

1.gif

想要让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;
}
登录后复制

2.gif

说明:

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

语法:

animation-play-state: paused|running;
登录后复制
  • paused:规定动画已暂停。

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

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

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

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

最后

以上就是传统蜗牛为你收集整理的css3如何让animation动画停止的全部内容,希望文章能够帮你解决css3如何让animation动画停止所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(114)

评论列表共有 0 条评论

立即
投稿
返回
顶部