Skip to content

Instantly share code, notes, and snippets.

@JasonEtco
Created May 5, 2016 15:12
Show Gist options
  • Save JasonEtco/1f4e7dba4bf2a46dfc42f967d0acd108 to your computer and use it in GitHub Desktop.
Save JasonEtco/1f4e7dba4bf2a46dfc42f967d0acd108 to your computer and use it in GitHub Desktop.
Quick Fade-In animation
@-webkit-keyframes fade-in {
0% {opacity: 0}
100% {opacity: 1}
}
@keyframes fade-in {
0% {opacity: 0}
100% {opacity: 1}
}
.your-class {
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
-webkit-animation-name: fade-in;
animation-name: fade-in;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment