JQuery动画效果

jQuery animate() 方法用于创建自定义动画。

语法:

$(selector).animate({params},speed,callback);

selector,选择器选择元素;

params 参数定义形成动画的 CSS 属性;

可选的 speed 参数规定效果的时长,取值:"slow"、"fast" 或毫秒;

可选的 callback 参数是动画完成后所执行的函数名称。

 

1.animate()操作多个属性的值变化:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
    <script type="text/javascript" src="http://labfile.oss.aliyuncs.com/jquery/2.1.3/jquery.min.js"></script>
<script> 
$(document).ready(function(){
  $("button").click(function(){
    $("div").animate({
      left:'250px',
      height:'+=150px',
      width:'+=150px'
    });
  });
});
</script> 
</head>
 
<body>
<button>开始</button>
<p>一般将元素的 position 属性设置为 relative, fixed, 或 absolute</p>
<div style="background:#98bf21;height:100px;width:100px;position:absolute;">
</div>

</body>
</html>

效果演示:

2.animate()使用队列功能

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
 <script type="text/javascript" src="http://labfile.oss.aliyuncs.com/jquery/2.1.3/jquery.min.js"></script>
<script> 
$(document).ready(function(){
  $("button").click(function(){
    var div=$("div");
    div.animate({height:'300px',opacity:'0.5'},"slow");
    div.animate({width:'300px',opacity:'0.7'},"slow");
    div.animate({height:'100px',opacity:'0.5'},"slow");
    div.animate({width:'100px',opacity:'0.7'},"slow");
  });
});
</script> 
</head>
 
<body>
<button>开始</button>
<p>一般将元素的 position 属性设置为 relative, fixed, 或 absolute</p>
<div style="background:#999999;height:100px;width:100px;position:absolute;">
</div>

</body>
</html>

效果演示:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值