OctoSpaccHub/assets/js/RandomGIF.js

8 lines
214 B
JavaScript
Raw Normal View History

2020-10-30 17:19:06 +01:00
function RandomGIF() {
gifid = Math.floor((Math.random() * 11)/2);
gifurl = top.glob + gifid + ".gif";
gifcss = "url(" + gifurl + ")";
document.body.style.backgroundImage = gifcss;
}
window.onload = RandomGIF;