kisa 퍼블리싱 스타일가이드 - 다크, 라이트모드 (html, scss)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 lines
850 B

// window.onload = function(){
// document.documentElement.dataset.theme='dark';
// };
// light-dark mode 클릭
if(document.querySelector('.lightmode')){
if(localStorage.getItem("lightmode") == 'on'){
document.documentElement.dataset.theme='light';
document.querySelector('#toggle-radio-light').checked = true;
}
//이벤트 클릭
document.querySelector('.lightmode').addEventListener("click", e=>{
if(e.target.classList.contains('tolight')){
document.documentElement.dataset.theme='light';
localStorage.setItem("lightmode", "on");
}else if(e.target.classList.contains('todark')){
document.documentElement.dataset.theme='dark';
localStorage.setItem("lightmode", "off");
}
},false);
}else{
localStorage.removeItem("lightmode");
}