Skip to content

Instantly share code, notes, and snippets.

@barbagrigia
Last active September 22, 2018 14:30
Show Gist options
  • Save barbagrigia/4f7a3f3c75793fef898b07330c8bdcf6 to your computer and use it in GitHub Desktop.
Save barbagrigia/4f7a3f3c75793fef898b07330c8bdcf6 to your computer and use it in GitHub Desktop.
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