druid-docs-cn/scripts/myscript.js

11 lines
293 B
JavaScript
Raw Normal View History

2020-07-01 00:40:32 -04:00
2020-07-01 04:10:42 -04:00
var obox1 = document.createElement("div")
2021-01-05 02:45:10 -05:00
obox1.innerHTML = '<img src = "/img/movie.jpeg" width = "275" height = "370" />';
2020-07-01 04:10:42 -04:00
obox1.style.position = "fixed";
obox1.style.right = "20px";
2021-01-05 02:23:57 -05:00
obox1.style.bottom = "0px";
2020-07-01 01:38:13 -04:00
2020-07-01 04:10:42 -04:00
var sbox = document.getElementsByTagName("body")[0];
sbox.appendChild(obox1);
2021-01-12 21:48:52 -05:00