Created
November 16, 2017 16:29
-
-
Save andyError/6fede68b01b2a8ccd7928e71eac7a58b to your computer and use it in GitHub Desktop.
CSS Fade and then hide
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
div > ul { | |
. . . | |
visibility:hidden; | |
opacity:0; | |
transition:visibility 0s linear 0.5s,opacity 0.5s linear; | |
} | |
div:hover > ul { | |
visibility:visible; | |
opacity:1; | |
transition-delay:0s; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://www.greywyvern.com/?post=337