// add button to change background to image from unsplash and save change to local storage var unsplashBtn = document.getElementById("unsplash"); unsplashBtn.addEventListener("click", function () { document.body.style.backgroundImage = "url(https://source.unsplash.com/random'" + "screenSize" + "screenHeight" + +"?ocean" + ")"; localStorage.setItem("background", "https://source.unsplash.com/random"); });
// check if local storage is set if (localStorage.getItem("background")) { document.body.style.backgroundImage = "url(" + localStorage.getItem("background") + ")"; }
// remove background image and remove from local storage var removeBgBtn = document.getElementById("default-bg"); removeBgBtn.addEventListener("click", function () { document.body.style.backgroundImage = "none"; localStorage.removeItem("background"); });
// get current screen size var screenSize = window.innerWidth; var screenHeight = window.innerHeight;