Skip to content

Instantly share code, notes, and snippets.

@itsakt
Created September 5, 2016 14:27
Show Gist options
  • Save itsakt/723fdd1553531480f902e43a27959443 to your computer and use it in GitHub Desktop.
Save itsakt/723fdd1553531480f902e43a27959443 to your computer and use it in GitHub Desktop.
CSS fadein page on load
body {
animation: fadein 1s;
}
@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