Skip to content

Instantly share code, notes, and snippets.

@vincentorback
Last active December 27, 2016 10:27
Show Gist options
  • Save vincentorback/364f358519e18d2977d939c6bd44b15c to your computer and use it in GitHub Desktop.
Save vincentorback/364f358519e18d2977d939c6bd44b15c to your computer and use it in GitHub Desktop.
/* 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