window.addEventListener("DOMContentLoaded",function(){ const queryString = window.location.search; const urlParams = new URLSearchParams(queryString); let color = urlParams.get('color') let x = urlParams.get('x') let y = urlParams.get('y') if(color && x && y){ let c = document.createElement("div") c.id = "derVierteRaumCurtain" document.body.appendChild(c) setTimeout(function () { document.body.classList.add("curtain-open") }, 500) localStorage.setItem('rrrr', "?color=" + color + "&x=" + x + "&y=" + y) } let b = document.createElement("div") b.title = "return to Der Vierte Raum" b.id = "derVierteRaumButton" b.addEventListener("click",function(){ let p = localStorage.getItem("rrrr") window.location.href = "https://dervierteraum.org" + (p ? p : "") }) let f = document.createElement("div") f.title = "Der Vierte Raum Funders" f.id = "derVierteRaumFunders" f.addEventListener("click",function(){ let p = localStorage.getItem("rrrr") window.location.href = "https://dervierteraum.org/#funders" + (p ? p : "") }) document.head.insertAdjacentHTML("beforeend", ``) document.body.appendChild(b) document.body.appendChild(f) })