This commit is contained in:
liujianhuan 2021-01-20 11:11:01 +08:00
commit 5162015cc3
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ obox1.style.display = "none";
obox1.setAttribute("class", "movie")
var obox2 = document.createElement("div")
obox2.innerHTML = '<img src = "/img/support.gif" width = "400" height = "250" />';
obox2.innerHTML = '<img src = "/img/support.gif" width = "200" height = "125" />';
obox2.style.position = "fixed";
obox2.style.bottom = "0px";
obox2.style.left = "0px";
@ -22,7 +22,7 @@ sbox.appendChild(obox1);
var rand = Math.random();
console.log(rand);
if (rand > 0.3) {
if (rand > 0.7) {
sbox.appendChild(obox2);
setTimeout(function(){
obox2.style.display = "block";