I'm using a jQuery plugin for custom Easing (jQuery Easing v1.3 -http://gsgd.co.uk/sandbox/jquery/easing/) to add custom easing to my jQuery Tools scrollable instances like so:

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

I was hoping to also use the jQuery Easing plugin to use with .animate functions

I've tried using it like this:

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

but it says "easeInOutCubic" is not defined. Is what I'm doing possible, and I've just got the syntax wrong? I tried using specialEasing as well, but didn't seem to work either:

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

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted
.animate({'marginLeft':'-280px'},200,"easeInOutCubic");

Use quotation marks!

link|improve this answer
So simple. So stupid. Thanks and sorry. – Keefer Nov 10 '11 at 16:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.