Skip to content

Instantly share code, notes, and snippets.

@pavenuto
Created September 14, 2010 21:57
Show Gist options
  • Save pavenuto/579862 to your computer and use it in GitHub Desktop.
Save pavenuto/579862 to your computer and use it in GitHub Desktop.
jQuery(
function($) {
$.easing.myEaseOut = function (x, t, b, c, d) {
return c*((t=t/d-1)*t*t*t*t + 1) + b;
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment