Last active
July 7, 2020 19:48
-
-
Save lomteslie/3e7b197c8c82fb8aedce to your computer and use it in GitHub Desktop.
transition-example
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
.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