jquery动画

jquery效果-动画

jquery animate()方法允许您创建自定义的动画。

jquery动画-animate()方法

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

语法:

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

必须的params参数定义形成动画的CSS属性。

可选的speed参数规定效果的时长,它可以取以下值:”slow”、”fast”或毫秒。

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

下面的例子演示animate()方法的简单应用。

它把

元素往右边移动了250像素。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js">
</script>
<script> 
    $(document).ready(function(){
      $("button").click(function(){
        $("div").animate({left:'250px'});
      });
    });
</script> 
</head>

<body>
    <button>开始动画</button>

    <p>默认情况下,所有的 HTML 元素有一个静态的位置,且是不可移动的。 
    如果需要改变为,我们需要将元素的 position 属性设置为 relative, fixed, 或 absolute!
    </p>

    <div style="background:#98bf21;height:100px;width:100px;position:absolute;">
</div>

</body>
</html>

默认情况下,所有HTML元素都有一个静态为止,且无法移动。

如果需要对位置进行操作,要记得首先把元素的CSS position属性设置为relative,fixed或者absolute。

jquery animate() - 操作多个属性

请注意,生成动画的过程当中可以同时使用多个属性:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js">
</script>
<script> 
$(document).ready(function(){
  $("button").click(function(){
    $("div").animate({
      left:'250px',
      opacity:'0.5', //设置透明的级别
      height:'150px',
      width:'150px'
    });
  });
});
</script> 
</head>

<body>  
    <button>开始动画</button>

    <p>默认情况下,所有的 HTML 元素有一个静态的位置,且是不可移动的。 
    如果需要改变,我们需要将元素的 position 属性设置为 relative, fixed, 或 absolute!</p>

    <div style="background:#98bf21;height:100px;width:100px;position:absolute;">
    </div>
</body>
</html>


可以用animate()方法来操作所有的CSS属性的么?

是的,几乎可以!

不过,需要记住一件重要的事情:

当使用animate()时候,必须使用Camel标记法书写所有的属性名,

比如,必须使用paddingLeft而不是padding-left

使用marginRight而不是margin-right,等等。

同时,色彩动画并不包含在核心jquery库当中。

如果需要生成颜色动画,您需要从jquery.com当中下载颜色动画插件。

jquery animate() - 使用相对值

也可以定义相对值(该值相对于元素的当前值)。

需要在值的前面加上 +=或者-=

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.bootcss.com/jquery/1.10.2/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>默认情况下,所有的 HTML 元素有一个静态的位置,且是不可移动的。 
    如果需要改变为,我们需要将元素的 position 属性设置为 relative, fixed, 或 absolute!</p>
    <div style="background:#98bf21;height:100px;width:100px;position:absolute;">
</div>

</body>
</html>

jquery animate() - 使用预定义的值

您甚至可以把属性的动画值设置为”slow”,”hide”或”toggle”

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js">
</script>
<script> 
$(document).ready(function(){
  $("button").click(function(){
    $("div").animate({
      height:'toggle'
    });
  });
});
</script> 
</head>

<body>
<button>开始动画</button>
<p>默认情况下,所有的 HTML 元素有一个静态的位置,且是不可移动的。 
如果需要改变为,我们需要将元素的 position 属性设置为 relative, fixed, 或 absolute!</p>
<div style="background:#98bf21;height:100px;width:100px;position:absolute;">
</div>

</body>
</html>

jquery animate() - 使用队列功能

默认地,jquery提供对动画的队列功能。

这意味着如果您在彼此之后,编写多个animate()调用。

jquery会创建包含这些方法调用的”内部”队列。

然后逐一运行这些animate()调用。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js">
</script>
<script> 
$(document).ready(function(){
  $("button").click(function(){
    var div=$("div");
    div.animate({height:'300px',opacity:'0.4'},"slow");
    div.animate({width:'300px',opacity:'0.8'},"slow");
    div.animate({height:'100px',opacity:'0.4'},"slow");
    div.animate({width:'100px',opacity:'0.8'},"slow");
  });
});
</script> 
</head>

<body>
<button>开始动画</button>
<p>默认情况下,所有的 HTML 元素有一个静态的位置,且是不可移动的。 
如果需要改变为,我们需要将元素的 position 属性设置为 relative, fixed, 或 absolute!</p>
<div style="background:#98bf21;height:100px;width:100px;position:absolute;">
</div>

</body>
</html>

下面的例子把

元素往右边移动了100像素,然后增加文本的字号:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js">
</script>
<script> 
$(document).ready(function(){
  $("button").click(function(){
    var div=$("div");  
    div.animate({left:'100px'},"slow");
    div.animate({fontSize:'3em'},"slow");
  });
});
</script> 
</head>

<body>
<button>开始动画</button>
<p>默认情况下,所有的 HTML 元素有一个静态的位置,且是不可移动的。 
如果需要改变为,我们需要将元素的 position 属性设置为 relative, fixed, 或 absolute!</p>
<div style="background:#98bf21;height:100px;width:200px;position:absolute;">HELLO</div>

</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值