怎麼停止css3属性animation,求助
3个回答
展开全部
将animation的animation-duration这个属性值设置为0就可以了。具体的你可以看一下这里http://www.w3school.com.cn/cssref/pr_animation.asp。当然最好的办法是一开始就设置运动的次数或者时间。
展开全部
div
{
animation-play-state:paused;
-webkit-animation-play-state:paused; /* Safari 和 Chrome */
}
{
animation-play-state:paused;
-webkit-animation-play-state:paused; /* Safari 和 Chrome */
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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">
body{color:#000}
div.abc{width:200px; background-color:#ccc}
span{float: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>
希望能帮到你
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询