Skip to content

Instantly share code, notes, and snippets.

@bendc
Created August 24, 2017 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bendc/4a8869eb268f14a5586093692664f6e2 to your computer and use it in GitHub Desktop.
Save bendc/4a8869eb268f14a5586093692664f6e2 to your computer and use it in GitHub Desktop.
rAF tutorial: ease-out equation
const easeOut = progress =>
Math.pow(--progress, 5) + 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment