Skip to content

Instantly share code, notes, and snippets.

@maexen
Created January 1, 2019 09:33
Show Gist options
  • Save maexen/0f0ea48e1010b6c6a89de591439721e0 to your computer and use it in GitHub Desktop.
Save maexen/0f0ea48e1010b6c6a89de591439721e0 to your computer and use it in GitHub Desktop.
Simple page fading
.site-container, html, body {
-webkit-animation: fadein 1.5s;
-moz-animation: fadein 1.5s;
-ms-animation: fadein 1.5s;
-o-animation: fadein 1.5s;
animation: fadein 1.5s;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@-moz-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@-webkit-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@-ms-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@-o-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