Created
January 1, 2019 09:33
-
-
Save maexen/0f0ea48e1010b6c6a89de591439721e0 to your computer and use it in GitHub Desktop.
Simple page fading
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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