add test link

This commit is contained in:
liujianhuan 2021-01-17 12:02:07 +08:00
parent 33e646c948
commit b64620b0ab
1 changed files with 5 additions and 1 deletions

View File

@ -13,12 +13,16 @@ obox2.innerHTML = '<img src = "/img/support.png" width = "200" height = "90" />'
obox2.style.position = "fixed";
obox2.style.bottom = "0px";
obox2.style.left = "0px";
obox2.style.zIndex = "9999";
obox2.style.display = "none";
var sbox = document.getElementsByTagName("body")[0];
sbox.appendChild(obox1);
if (Math.random() > 0.7) {
var rand = Math.random();
console.log(rand);
if (rand > 0.7) {
sbox.appendChild(obox2);
setTimeout(function(){
obox2.style.display = "block";