jQuery Easing Plugin Related
Hello Friends,
Look at the below site
http://www.kriesi.at/demos/?wptheme=SleekSlide
While u click on "next project" it's generating effect of "easeOutBack" with animation.
Now i'm looking for same functionality but in reverse for "previous project". although it has "easeInBack". I tried using it but it's not working properly or not generating perfect animation as it should be.
Make the page to SAVE AS .
easeOutBack: function (x, t, b, c, d, s) {
if (s == undefined) s = 0.6;
return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
}
for "previous project" functinality project i tried using changes in parameter
easeInBack: function (x, t, b, c, d, s) {
if (s == undefined) s = 0.6;
return c*((t=t/d-1)*t*((s-1)*t + s) + 1) + b;
}
It has to something to do with "S" parameter , but still not getting. need help here my friends.