怎麼停止css3属性animation,求助
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎麼停止css3属性animation,求助相关的知识,希望对你有一定的参考价值。
将animation的animation-duration这个属性值设置为0就可以了。具体的你可以看一下这里http://www.w3school.com.cn/cssref/pr_animation.asp。当然最好的办法是一开始就设置运动的次数或者时间。 参考技术A divanimation-play-state:paused;
-webkit-animation-play-state:paused; /* Safari 和 Chrome */
参考技术B
css3属性里的动画是不能停止的,只有通过jQ来改变,代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>用jQ 改变形状</title>
<style type="text/css">
bodycolor:#000
div.abcwidth:200px; background-color:#ccc
spanfloat:left; border:1px #ccc solid; margin:8px; width:45px; height:45px; background-color:#eee
</style>
<script src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(function()
$("div.abc").animate(width:"400px");
);
</script>
</head>
<body>
<div class="abc">我的宽度变成400了</div>
</body>
</html>
希望能帮到你
以上是关于怎麼停止css3属性animation,求助的主要内容,如果未能解决你的问题,请参考以下文章