Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save briandailey/72e4cbed397e81979bf65d455f32409a to your computer and use it in GitHub Desktop.
Save briandailey/72e4cbed397e81979bf65d455f32409a 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