Skip to content

Instantly share code, notes, and snippets.

@wpflames
Created August 29, 2020 17:20
Show Gist options
  • Select an option

  • Save wpflames/915f84d138ed0ac45786890e8c311d9d to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/915f84d138ed0ac45786890e8c311d9d to your computer and use it in GitHub Desktop.
Hamburger Menu Toggle Animation 1
function toggle(){
var button = document.getElementById('toggle');
var nav = document. getElementById('menu');
button.classList.toggle('active');
nav.classList.toggle('active');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment