Last active
August 9, 2017 12:37
-
-
Save IvanaSays/ac7e2aad478a5aae3f4cd8768efc402b to your computer and use it in GitHub Desktop.
3 - Performant Animations
This file contains 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
.menu { | |
opacity: 1; | |
transition: .2s; | |
} | |
.menu.closed { | |
opacity: 0; | |
pointer-events: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment