blob: 3cdc4de79c30941ba32af52d5b5daf59f0b207d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
function remember(img) {
localStorage.setItem('background', img);
}
function recall() {
if (localStorage.getItem("background")) {
console.log(localStorage.getItem("background"));
document.body.style.backgroundImage = 'url("https://almightymiau.gay/' + localStorage.getItem("background") + '")';
}
}
window.onload = () => {
recall();
}
|