码迷,mamicode.com
首页 > 其他好文 > 详细

animate()方法以一次设置多个属性

时间:2015-12-07 14:14:27      阅读:1312      评论:0      收藏:0      [点我收藏+]

标签:

animate()方法以一次设置多个属性:
此方法可以为匹配元素创建自定义动画,例如可以将一个div的宽度设置为200px,代码实例如下:

<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>蚂蚁部落</title>
<style type="text/css">
div{
  width:150px;
  height:150px;
  background-color:green;
}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){ 
  $("button").click(function(){ 
    $("div").animate({"width":"200px"}) 
  }) 
}); 
</script>
</head>
<body>
<div></div>
<button>点击设置</button>
</body>
</html>

以上代码成功将div的宽度设置为200px,但是实际应用中往往需要同时设置匹配元素的多个属性值。代码实例如下:

<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>蚂蚁部落</title>
<style type="text/css">
div{
  width:150px;
  height:150px;
  background-color:green;
}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){ 
  $("button").click(function(){ 
    $("div").animate({"width":"200px","height":"300px"}) 
  }) 
}); 
</script>
</head>
<body>
<div></div>
<button>点击设置</button>
</body>
</html>

以上代码同时设置了div的宽度和高度,方法就是在每一组属性/值对之间添加逗号分隔即可。

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=5803

更多内容可以参阅:http://www.softwhy.com/jquery/

animate()方法以一次设置多个属性

标签:

原文地址:http://www.cnblogs.com/zhengzebiaodashi/p/5025688.html

(1)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!