mirror of
https://gitlab.com/octospacc/octospacc.gitlab.io
synced 2025-01-09 15:34:38 +01:00
8 lines
214 B
JavaScript
8 lines
214 B
JavaScript
function RandomGIF() {
|
|
gifid = Math.floor((Math.random() * 25)/2);
|
|
gifurl = top.glob + gifid + ".gif";
|
|
gifcss = "url(" + gifurl + ")";
|
|
document.body.style.backgroundImage = gifcss;
|
|
}
|
|
|
|
window.onload = RandomGIF; |