Skip to content

Instantly share code, notes, and snippets.

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

  • Save wpflames/76cdfec98f4e8bf2dacff06957475661 to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/76cdfec98f4e8bf2dacff06957475661 to your computer and use it in GitHub Desktop.
Hamburger Menu Toggle Animation 3 - JS
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