mirror of
https://gitlab.com/octospacc/octospacc.gitlab.io
synced 2025-03-02 10:37:48 +01:00
8 lines
240 B
JavaScript
8 lines
240 B
JavaScript
function RandomGIF() {
|
|
GifID = Math.floor((Math.random() * 25)/2);
|
|
GifURL = "/Web-ThirdParty-Unknown/Assets/Media/Backgrounds/" + GifID + ".gif";
|
|
document.body.style.backgroundImage = "url(" + GifURL + ")";
|
|
}
|
|
|
|
window.onload = RandomGIF;
|