Created
August 29, 2020 17:20
-
-
Save wpflames/915f84d138ed0ac45786890e8c311d9d to your computer and use it in GitHub Desktop.
Hamburger Menu Toggle Animation 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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