This repository has been archived on 2026-06-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2023-10-03 09:22:32 +02:00

11 lines
351 B
JavaScript

const hamburgerBtn = document.querySelector(".nav-toggler")
const navigation = document.querySelector("nav")
const html = document.querySelector("html")
hamburgerBtn.addEventListener("click", toggleNav)
function toggleNav() {
hamburgerBtn.classList.toggle("active")
navigation.classList.toggle("active")
html.classList.toggle("active")
}