Files
SAE_WEB_2025/burguer.js
2025-01-17 22:35:22 +01:00

22 lines
601 B
JavaScript

var sidenav = document.getElementById("monSidenav");
var openBtn = document.getElementById("openBtn");
var closeBtn = document.getElementById("closeBtn");
openBtn.onclick = openNav;
closeBtn.onclick = closeNav;
/* Set the width of the side navigation to 250px */
function openNav() {
sidenav.classList.add("active");
for(let i = 0; i != 4; i++) {
boutons[i].style.display="block";
}
}
/* Set the width of the side navigation to 0 */
function closeNav() {
sidenav.classList.remove("active");
for(let i = 0; i != 4; i++) {
boutons[i].style.display="none";
}
}