I use this line of code for changing the position of an ul
to get the requested li
in focus.
$('ul#scroll').stop().animate({'left': new_pos+'px'},
{duration: 50, easing: "swing"});
I tried some Effects like smoothmove
but I get an error, that this effect can not be applied to my object.
Linear
or swing
are too boring.
Which effect can I use for animating the position?
To use easing effects other than
swing
andlinear
you'd need to include jQueryUI.http://api.jquery.com/animate
http://jqueryui.com/resources/demos/effect/easing.html