Skip to content

Instantly share code, notes, and snippets.

@lomteslie
Last active July 7, 2020 19:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lomteslie/3e7b197c8c82fb8aedce to your computer and use it in GitHub Desktop.
Save lomteslie/3e7b197c8c82fb8aedce to your computer and use it in GitHub Desktop.
transition-example
.class {
transition: color $transition-speed-easing; // preferred method
}
.class {
transition: opacity ($transition-speed * 2) $transition-easing; // For a slower animation
}
.class {
transition: color $transition-speed-easing, // multiple properties
border $transition-speed-easing;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment