druid-docs-cn/scripts/myscript.js

11 lines
295 B
JavaScript
Raw Normal View History

2020-07-01 12:40:32 +08:00
2020-07-01 16:10:42 +08:00
var obox1 = document.createElement("div")
2021-01-05 15:21:28 +08:00
obox1.innerHTML = '<img src = "/img/movie.jpeg" width = "270" height = "380" />';
2020-07-01 16:10:42 +08:00
obox1.style.position = "fixed";
obox1.style.right = "20px";
2020-07-18 16:49:18 +08:00
obox1.style.bottom = "200px";
2020-07-01 13:38:13 +08:00
2020-07-15 14:13:55 +08:00
2020-07-01 16:10:42 +08:00
var sbox = document.getElementsByTagName("body")[0];
sbox.appendChild(obox1);