Last active
September 22, 2018 14:30
-
-
Save barbagrigia/4f7a3f3c75793fef898b07330c8bdcf6 to your computer and use it in GitHub Desktop.
Animation in UX https://spectrum.chat/thread/257957e0-ef20-4757-b25e-82156b89131a?m=MTUzNzYyMTcwNTI1Ng==
This file contains hidden or 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 animationVars = { | |
speed: { | |
veryFast: 100, | |
fast: 200, | |
normal: 300, | |
slow: 400, | |
verySlow: 500, | |
}, | |
ease: 'ease-in-out', | |
// For use as transition: opacity ${animationVars.hoverCss}; | |
get hoverCss() { | |
return `${this.speed.fast}ms ${this.ease}` | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment