Skip to content

Instantly share code, notes, and snippets.

@joeldrapper
Last active April 29, 2016 13:56
Show Gist options
  • Save joeldrapper/bb3838d759164b19b428 to your computer and use it in GitHub Desktop.
Save joeldrapper/bb3838d759164b19b428 to your computer and use it in GitHub Desktop.
FOUT
@keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
html {
animation-duration: 0.2s;
animation-delay: 2s;
animation-name: fadeIn;
animation-fill-mode: forwards;
}
.wf-active {
animation-delay: 0s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment