860 gün önce localStorage refresh
sorusunu cevapladı.
(()=>{
if(localStorage.getItem("mode")){
const theme = localStorage.getItem('mode');
const textElement = document.getElementById("btnChangeText")
const icon = document.getElementById("darkIcon")
document.body.className= theme
if(theme == "dark-theme"){
textElement.innerText = "Açık Mod";
icon.className = "fa-solid fa-sun";
}
else if(theme == ""){
textElement.innerText = "Koyu Mod";
icon.className = "fa-solid fa-moon";
}
}
})()
// change theme
themeToggler.addEventListener("click", () => {
document.body.classList.toggle("dark-theme");
if (document.body.classList != "dark-theme") {
document.getElementById("btnChangeText").innerText = "Koyu Mod";
document.getElementById("darkIcon").className = "fa-solid fa-moon";
} else {
document.getElementById("btnChangeText").innerText = "Açık Mod";
// eğer kişi açık tema da refresh atarsa
// otomatik olarak dark temaya geri dönüyor, hallet onu
document.getElementById("darkIcon").className = "fa-solid fa-sun";
}
localStorage.setItem('mode', document.body.classList);
});
buyrun bu işinizi görür. çalışıyor.