Created
August 24, 2017 18:14
-
-
Save bendc/4a8869eb268f14a5586093692664f6e2 to your computer and use it in GitHub Desktop.
rAF tutorial: ease-out equation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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