Last active
December 27, 2016 10:27
-
-
Save vincentorback/364f358519e18d2977d939c6bd44b15c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/* If js doesnt load or just before it does: hide element for 2 seconds. */ | |
.no-js .u-showIfNoJs { | |
animation: showAfterLong 2000ms; | |
} | |
/* Hide when js loads and remove animation */ | |
.js .u-showIfNoJs { | |
animation: none; | |
display: none; | |
} | |
/* You might want to change these properties to match your need */ | |
@keyframes showAfterLong { | |
0%, | |
100%{ | |
visibility: hidden; | |
overflow: hidden; | |
height: 0; | |
padding: 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment