Skip to content

Instantly share code, notes, and snippets.

@iqbalmauludy
Created June 23, 2017 17:23
Show Gist options
  • Select an option

  • Save iqbalmauludy/9fc2ca2912038712b55984e576d04b3f to your computer and use it in GitHub Desktop.

Select an option

Save iqbalmauludy/9fc2ca2912038712b55984e576d04b3f to your computer and use it in GitHub Desktop.
Overlay Menu
<script>
function openNav() {
document.getElementById("myNav").style.height = "100%";
}
function closeNav() {
document.getElementById("myNav").style.height = "0%";
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment