add test link
This commit is contained in:
parent
b40b80d58b
commit
33e646c948
BIN
img/support.png
Normal file
BIN
img/support.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
@ -8,6 +8,23 @@ obox1.style.display = "none";
|
|||||||
|
|
||||||
obox1.setAttribute("class", "movie")
|
obox1.setAttribute("class", "movie")
|
||||||
|
|
||||||
|
var obox2 = document.createElement("div")
|
||||||
|
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.display = "none";
|
||||||
|
|
||||||
var sbox = document.getElementsByTagName("body")[0];
|
var sbox = document.getElementsByTagName("body")[0];
|
||||||
sbox.appendChild(obox1);
|
sbox.appendChild(obox1);
|
||||||
|
|
||||||
|
if (Math.random() > 0.7) {
|
||||||
|
sbox.appendChild(obox2);
|
||||||
|
setTimeout(function(){
|
||||||
|
obox2.style.display = "block";
|
||||||
|
setTimeout(function(){
|
||||||
|
obox2.style.display = "none";
|
||||||
|
}, 10000)
|
||||||
|
}, 5000)
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user