Untitled
function openNav() { document.getElementById("mySidenav").style.width = "250px"; document.querySelector(".content").style.marginLeft = "250px"; } // Close the sidenav function closeNav() { document.getElementById("mySidenav").style.width = "0"; document.querySelector(".content").style.marginLeft = "0"; } let darkbtn=document.querySelector(".dark-light"); darkbtn.addEventListener("click",()=>{ let body=document.body; body.classList.toggle("dark-mood") })
Leave a Comment