码迷,mamicode.com
首页 > Web开发 > 详细

Jquery复习(一)animate()一些值得注意的点

时间:2019-07-23 13:01:05      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:属性   tar   div   href   ima   针对   amp   style   plugins   

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

是的,几乎可以!不过,需要记住一件重要的事情:当使用 animate() 时,必须使用 Camel 标记法书写所有的属性名,比如,必须使用 paddingLeft 而不是 padding-left,使用 marginRight 而不是 margin-right,等等。

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

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

jQuery animate() - 使用相对值

也可以定义相对值(该值相对于元素的当前值)。需要在值的前面加上 += 或 -=:

$("button").click(function(){
   $("div").animate({
     left:250px,
     height:+=150px,
     width:+=150px
   });
 }); 

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

您甚至可以把属性的动画值设置为 "show"、"hide" 或 "toggle":

$("button").click(function(){
   $("div").animate({
     height:toggle
   });
 });  

jQuery animate() - 使用队列功能

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

这意味着如果您在彼此之后编写多个 animate() 调用,jQuery 会创建包含这些方法调用的"内部"队列。然后逐一运行这些 animate 调用。

$("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");
 });  
$("button").click(function(){
   var div=$("div");
   div.animate({left:100px},"slow");
   div.animate({fontSize:3em},"slow");
 });  

 

 

Jquery复习(一)animate()一些值得注意的点

标签:属性   tar   div   href   ima   针对   amp   style   plugins   

原文地址:https://www.cnblogs.com/kunmomo/p/11231085.html

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