Last active
March 18, 2019 17:29
-
-
Save purag/0bdb9c25d7c6c5ae45600b69049b9f67 to your computer and use it in GitHub Desktop.
A collection of simple easing functions for JavaScript
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
let easing = { | |
// classic linear | |
linear: t => t, | |
// slow -> fast | |
easeInQuad: t => t*t, | |
easeInCubic: t => t*t*t, | |
easeInQuint: t => t*t*t*t, | |
// fast -> slow | |
easeOutQuad: t => 1 - easing.easeInQuad(1 - t), | |
easeOutCubic: t => 1 - easing.easeInCubic(1 - t), | |
easeOutQuint: t => 1 - easing.easeInQuint(1 - t), | |
// slow -> fast -> slow | |
easeInOutQuad: t => t < .5 ? easing.easeInQuad(t * 2) / 2 : 1 - easing.easeInQuad((1 - t) * 2) / 2, | |
easeInOutCubic: t => t < .5 ? easing.easeInCubic(t * 2) / 2 : 1 - easing.easeInCubic((1 - t) * 2) / 2, | |
easeInOutQuint: t => t < .5 ? easing.easeInQuint(t * 2) / 2 : 1 - easing.easeInQuint((1 - t) * 2) / 2, | |
// bounce | |
easeOutElastic: t => Math.pow(2, -10 * t) * Math.sin((t - 0.3 / 4) * (2 * Math.PI) / 0.3) + 1 | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment