Skip to content

Instantly share code, notes, and snippets.

@neutraltone
Last active August 25, 2016 23:04
Show Gist options
  • Save neutraltone/ba1decf1087b03635b94 to your computer and use it in GitHub Desktop.
Save neutraltone/ba1decf1087b03635b94 to your computer and use it in GitHub Desktop.
This is a small example of fading things in and out using visibility Hidden and opacity. As described here:http://www.greywyvern.com/?post=337#
ul > li {
visibility:hidden;
opacity:0;
transition:visibility 0s linear 0.5s,opacity 0.5s linear;
}
ul:hover > li {
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