1

我正在使用用于自定义缓动的 jQuery 插件(jQuery Easing v1.3 -http://gsgd.co.uk/sandbox/jquery/easing/)向我的 jQuery Tools 可滚动实例添加自定义缓动,如下所示:

$(".historyScrollable").scrollable({ easing:"easeInOutCubic"}).navigator();

我希望也可以使用 jQuery Easing 插件与 .animate 函数一起使用

我试过这样使用它:

$(this).find('div').stop().animate({'marginLeft':'-280px'},200,easeInOutCubic);

但它说“easeInOutCubic”没有定义。我正在做的事情是否可能,而我只是语法错误?我也尝试过使用 specialEasing,但似乎也没有用:

$(this).find('div').stop().animate({'marginLeft':'-280px'},{duration:200, customEasing:{'marginLeft':'easeInOutCubic'}});

4

1 回答 1

5
.animate({'marginLeft':'-280px'},200,"easeInOutCubic");

使用引号!

于 2011-11-10T15:37:37.183 回答