OctoSpaccHub/public/Assets/JS/RandomGIF.js

8 lines
267 B
JavaScript
Raw Normal View History

2021-09-22 22:58:20 +02:00
function RandomGIF() {
GifID = Math.floor((Math.random() * 25)/2);
2022-09-05 16:29:51 +02:00
GifURL = "https://octospacc.gitlab.io/Web-ThirdParty-Unknown/Assets/Media/Backgrounds/" + GifID + ".gif";
2021-09-22 22:58:20 +02:00
document.body.style.backgroundImage = "url(" + GifURL + ")";
}
window.onload = RandomGIF;