Skip to content

Instantly share code, notes, and snippets.

@hsnaydd
Created January 24, 2014 23:04
Show Gist options
  • Save hsnaydd/8608646 to your computer and use it in GitHub Desktop.
Save hsnaydd/8608646 to your computer and use it in GitHub Desktop.
Css animation fade in
@keyframes fadeIn{
0% { opacity: 0 }
100% { opacity: 1 }
}
.fadeIn {
animation-name: fadeIn;
animation-duration: 1s;
animation-fill-mode: forwards;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment