Skip to content

Instantly share code, notes, and snippets.

@ashukasma
Created June 9, 2016 07:19
Show Gist options
  • Save ashukasma/9c060b5da11a6674b8e0fbaf0500347d to your computer and use it in GitHub Desktop.
Save ashukasma/9c060b5da11a6674b8e0fbaf0500347d to your computer and use it in GitHub Desktop.
CSS tricks
.parent:hover .child {
display: block;
-webkit-animation: fadeIn 1s;
animation: fadeIn 1s;
}
@-webkit-keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment