Skip to content

Instantly share code, notes, and snippets.

@wilsonpage
Last active August 29, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wilsonpage/3cfff759c592344449e2 to your computer and use it in GitHub Desktop.
Save wilsonpage/3cfff759c592344449e2 to your computer and use it in GitHub Desktop.
@navigation-enter(0.5s) {
html {
background-color: transparent;
animation: fade-in 0.5s;
}
}
@keyframes fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
@media (navigation-enter: 0.5s) {
html {
background-color: transparent;
animation: fade-in 0.5s;
}
}
@keyframes fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment