浅谈jQuery animate easing的具体使用方法(推荐)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了浅谈jQuery animate easing的具体使用方法(推荐)相关的知识,希望对你有一定的参考价值。

参考技术A 从jQuery
API
文档中可以知道,jQuery自定义动画的函数.animate(
properties
[,
duration]
[,
easing]
[,
complete]
)有四个参数:
•properties:一组包含作为动画属性和终值的样式属性和及其值的集合
•duration(可选):动画执行时间,其值可以是三种预定速度之一的字符串("slow",
"normal",
or
"fast")或表示动画时长的毫秒数值(如:1000)
•easing(可选):要使用的过渡效果的名称,如:"linear"
或"swing"
•complete(可选):在动画完成时执行的函数
其中参数easing默认有两个效果:"linear"和"swing",如果需要更多效果就要插件支持了,jQuery
Easing
Plugin提供了像"easeOutExpo"、"easeOutBounce"等30多种效果,大家可以点击这里去看每一种easing的演示效果,下面详细介绍下其使用方法及每种easing的曲线图。
jQuery
easing
使用方法
首先,项目中如果需要使用特殊的动画效果,则需要在引入jQuery之后引入jquery.easing.1.3.js
<script
type="text/javascript"
src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script
type="text/javascript"
src="http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js"></script>
引入之后,easing参数可选的值就有以下32种:
1.linear
2.swing
3.easeInQuad
4.easeOutQuad
5.easeInOutQuad
6.easeInCubic
7.easeOutCubic
8.easeInOutCubic
9.easeInQuart
10.easeOutQuart
11.easeInOutQuart
12.easeInQuint
13.easeOutQuint
14.easeInOutQuint
15.easeInExpo
16.easeOutExpo
17.easeInOutExpo
18.easeInSine
19.easeOutSine
20.easeInOutSine
21.easeInCirc
22.easeOutCirc
23.easeInOutCirc
24.easeInElastic
25.easeOutElastic
26.easeInOutElastic
27.easeInBack
28.easeOutBack
29.easeInOutBack
30.easeInBounce
31.easeOutBounce
32.easeInOutBounce
当然一般一个项目中不可能会用到这么多效果,为了减少代码冗余,必要时可以不用引入整个jquery.easing.1.3.js,我们可以只把我们需要的几种easing放入Javascript文件中,如项目中只用到"easeOutExpo"和"easeOutBounce"两种效果,只需要下面的代码就可以了。
jQuery.extend(
jQuery.easing,

easeOutExpo:
function
(x,
t,
b,
c,
d)

return
(t==d)
?
b+c
:
c
*
(-Math.pow(2,
-10
*
t/d)
+
1)
+
b;
,
easeOutBounce:
function
(x,
t,
b,
c,
d)

if
((t/=d)
<
(1/2.75))

return
c*(7.5625*t*t)
+
b;

else
if
(t
<
(2/2.75))

return
c*(7.5625*(t-=(1.5/2.75))*t
+
.75)
+
b;

else
if
(t
<
(2.5/2.75))

return
c*(7.5625*(t-=(2.25/2.75))*t
+
.9375)
+
b;

else

return
c*(7.5625*(t-=(2.625/2.75))*t
+
.984375)
+
b;

,
);
使用jQuery自定义动画函数animate来指定easing效果,如自定义一种类弹簧效果的动画:
$(myElement).animate(
top:
500,
opacity:
1
,
1000,
'easeOutBounce');
值得一提的是jQuery
1.4版本中对animate()方法,easing的方法进行了扩展,支持为每个属性指定easing方法,详细请参考这里,如:
//第一种写法
$(myElement).animate(
left:
[500,
'swing'],
top:
[200,
'easeOutBounce']
);
//第二种写法
$(myElement).animate(
left:
500,
top:
200
,

specialEasing:

left:
'swing',
top:
'easeOutBounce'

);
使用jQuery内置动画函数如slideUp()、slideDown()等来指定easing效果,以下两种方法都可以:
$(myElement).slideUp(1000,
method,
callback);
$(myElement).slideUp(
duration:
1000,
easing:
method,
complete:
callback
);
以上就是小编为大家带来的浅谈jQuery
animate
easing的具体使用方法(推荐)全部内容了,希望大家多多支持脚本之家~

jQuery Easing 使用方法

转自:http://blog.sina.com.cn/s/blog_70a3539f0102v8az.html

jQuery API 文档中可以知道,jQuery自定义动画的函数.animate( properties [, duration] [, easing] [, complete] )有四个参数:

 

  • properties:一组包含作为动画属性和终值的样式属性和及其值的集合
  • duration(可选):动画执行时间,其值可以是三种预定速度之一的字符串("slow", "normal", or "fast")或表示动画时长的毫秒数值(如:1000)
  • easing(可选):要使用的过渡效果的名称,如:"linear" 或"swing"
  • complete(可选):在动画完成时执行的函数
其中参数easing默认有两个效果:"linear"和"swing",如果需要更多效果就要插件支持了,jQuery Easing Plugin提供了像"easeOutExpo"、"easeOutBounce"等30多种效果,大家可以点击这里去看每一种easing的演示效果,下面详细介绍下其使用方法及每种easing的曲线图。
 

jQuery easing 使用方法

首先,项目中如果需要使用特殊的动画效果,则需要在引入jQuery之后引入jquery.easing.1.3.js
  1. <</span>script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.js"></</span>script>  
  2. <</span>script type="text/javascript" src="http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js"></</span>script>  

 

引入之后,easing参数可选的值就有以下32种:

 

  1. linear
  2. swing
  3. easeInQuad
  4. easeOutQuad
  5. easeInOutQuad
  6. easeInCubic
  7. easeOutCubic
  8. easeInOutCubic
  9. easeInQuart
  10. easeOutQuart
  11. easeInOutQuart
  12. easeInQuint
  13. easeOutQuint
  14. easeInOutQuint
  15. easeInExpo
  16. easeOutExpo
  17. easeInOutExpo
  18. easeInSine
  19. easeOutSine
  20. easeInOutSine
  21. easeInCirc
  22. easeOutCirc
  23. easeInOutCirc
  24. easeInElastic
  25. easeOutElastic
  26. easeInOutElastic
  27. easeInBack
  28. easeOutBack
  29. easeInOutBack
  30. easeInBounce
  31. easeOutBounce
  32. easeInOutBounce
当然一般一个项目中不可能会用到这么多效果,为了减少代码冗余,必要时可以不用引入整个jquery.easing.1.3.js,我们可以只把我们需要的几种easing放入Javascript文件中,如项目中只用到"easeOutExpo"和"easeOutBounce"两种效果,只需要下面的代码就可以了
  1. jQuery.extend( jQuery.easing,  
  2. {  
  3.     easeOutExpo: function (x, t, b, c, d) {  
  4.         return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;  
  5.     },  
  6.     easeOutBounce: function (x, t, b, c, d) {  
  7.         if ((t/=d) < (1/2.75)) {  
  8.             return c*(7.5625*t*t) + b;  
  9.         } else if (t < (2/2.75)) {  
  10.             return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;  
  11.         } else if (t < (2.5/2.75)) {  
  12.             return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;  
  13.         } else {  
  14.             return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;  
  15.         }  
  16.     },  
  17. });  

 

使用jQuery自定义动画函数animate来指定easing效果,如自定义一种类弹簧效果的动画:

  1. $(myElement).animate({  
  2.     top: 500,  
  3.     opacity: 1  
  4. }, 1000, ‘easeOutBounce‘);  

值得一提的是jQuery 1.4版本中对animate()方法,easing的方法进行了扩展,支持为每个属性指定easing方法,详细请参考这里,如:

 

  1. $(myElement).animate({  
  2.     left: [500, ‘swing‘],  
  3.     top: [200, ‘easeOutBounce‘]  
  4. });  

也可以用另外一种写法:

 

 

  1. $(myElement).animate({  
  2.     left: 500,  
  3.     top: 200  
  4. }, {  
  5.     specialEasing: {  
  6.         left: ‘swing‘,  
  7.         top: ‘easeOutBounce‘  
  8.     }  
  9. });  

 

 

使用jQuery内置动画函数如slideUp()、slideDown()等来指定easing效果,以下两种方法都可以:

 

  1. $(myElement).slideUp(1000, method, callback});  
  2. $(myElement).slideUp({  
  3.     duration: 1000,   
  4.     easing: method,   
  5.     complete: callback  
  6. });  

以上是关于浅谈jQuery animate easing的具体使用方法(推荐)的主要内容,如果未能解决你的问题,请参考以下文章

解析jQuery效果函数animate()

JQuery强化教程 —— jQuery Easing

jquery中的animate动态效果是如何通过Js实现的?

JQuery强化教程 —— jQuery Easing

Jquery Easing函数库

Jquery动画(animate)的使用及扩展说明