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.
55 lines
1.8 KiB
55 lines
1.8 KiB
var light= (getCookie("light")=="" ? true : getCookie("light"));
|
|
selectedTheme = "selected"+(light=="true" ? "Day" : "Night");
|
|
|
|
document.getElementById("light").width=size/4;
|
|
|
|
if(document.getElementById("logo")!=null)
|
|
{
|
|
document.getElementById("logo").width=size*2;
|
|
}
|
|
|
|
|
|
function switchLight() {
|
|
light=(light=="true" ? "false" : "true");
|
|
setCookie("light",light,30);
|
|
applyLight(light);
|
|
}
|
|
|
|
function applyLight(li) {
|
|
document.getElementById("light").src="ress/"+(li=="true" ? "dark" : "light")+".png";
|
|
if(document.getElementById("logo")!=null)
|
|
{
|
|
document.getElementById("logo").src="ress/logo_"+(li=="true" ? "clair" : "dark")+".png";
|
|
}
|
|
|
|
if(document.getElementById("modal")!=null)
|
|
{
|
|
document.getElementById("modal").classList.add((li=="true" ? "day" : "night"));
|
|
document.getElementById("modal").classList.remove((li=="true" ? "night" : "day"));
|
|
}
|
|
|
|
if(document.getElementById("resetGems")!=null)
|
|
{
|
|
document.getElementById("resetGems").src="ress/reset_"+(li=="true" ? "light" : "dark")+".png";
|
|
}
|
|
|
|
document.getElementsByTagName("body")[0].classList.add((li=="true" ? "day" : "night"));
|
|
document.getElementsByTagName("body")[0].classList.remove((li=="true" ? "night" : "day"));
|
|
|
|
var all = document.getElementsByClassName('selected'+(li!="true" ? "Day" : "Night"));
|
|
var ids=[];
|
|
for (var cpt = 0; cpt < all.length; cpt++)
|
|
{
|
|
ids.push(all[cpt].id);
|
|
}
|
|
|
|
selectedTheme = "selected"+(li=="true" ? "Day" : "Night");
|
|
|
|
for (var cpt = 0; cpt < ids.length; cpt++) {
|
|
var el=document.getElementById(ids[cpt]);
|
|
el.classList.remove('selected'+(li!="true" ? "Day" : "Night"));
|
|
el.classList.add('selected'+(li=="true" ? "Day" : "Night"));
|
|
}
|
|
}
|
|
|
|
applyLight(light); |