Upload New File
This commit is contained in:
parent
d33b41f883
commit
10aaa5a076
|
@ -0,0 +1,8 @@
|
||||||
|
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;
|
Loading…
Reference in New Issue