Skip to content

Instantly share code, notes, and snippets.

@bendc
Created August 24, 2017 18:14
Embed
What would you like to do?
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