OctoSpaccHub/public/Assets/JS/RandomGIF.js
2022-09-05 16:29:51 +02:00

8 lines
267 B
JavaScript

function RandomGIF() {
GifID = Math.floor((Math.random() * 25)/2);
GifURL = "https://octospacc.gitlab.io/Web-ThirdParty-Unknown/Assets/Media/Backgrounds/" + GifID + ".gif";
document.body.style.backgroundImage = "url(" + GifURL + ")";
}
window.onload = RandomGIF;