如何将Easing属性添加到此Jquery滚动动画中

时间:2013-12-11 14:17:05

标签: jquery

在下面的代码中添加Easing属性以获得一些很酷的滚动动画

 $(document).ready(function () {
   $('.scrollup').click(function () {
     $("html, body").animate({ scrollTop: 0}, 1000);
     return false;
   });
 });

2 个答案:

答案 0 :(得分:2)

Easing是animate函数的第3个参数:

$("html, body").animate({ scrollTop: 0}, 1000, "linear");

请参阅此处的完整文档:

http://api.jquery.com/animate/

答案 1 :(得分:0)

你可以这样做:

 $("html, body").animate({ scrollTop: 0}, 1000, EASING_HERE);

参考:http://api.jquery.com/animate/