Skip to content

Instantly share code, notes, and snippets.

@conormcafee
Last active August 29, 2015 14:24
Show Gist options
  • Save conormcafee/3e374dac5c0cac534b83 to your computer and use it in GitHub Desktop.
Save conormcafee/3e374dac5c0cac534b83 to your computer and use it in GitHub Desktop.
Simple Hidden Nav
function toggleGetNav(id)
{
var e = document.getElementsByTagName(id)[0];
e.style.display = getComputedStyle(e, null).display === 'none' ? 'block' : 'none';
}
@-webkit-keyframes slide-left {
100% {
left: 0;
}
}
@keyframes slide-left {
100% {
left: 0;
}
}
nav {
left: -999px;
width: 100%;
height: 100%;
-webkit-animation: slide-left 0.5s forwards;
-webkit-animation-delay: 0.05s;
animation: slide-left 0.5s forwards;
animation-delay: 0.05s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment