1 2 3 4 5 6 7 8 9 10 11 12 | _divBG = document.createElement("div"); _divBG.style.position = "absolute"; _divBG.style.top = 0; _divBG.style.left = 0; _divBG.style.backgroundColor = "black"; _divBG.style.width = document.body.clientWidth; _divBG.style.height = document.body.clientHeight; _divBG.style.filter = "alpha(opacity=20)"; _divBG.style.zIndex = 99; _divBG.style.display = "block"; document.body.appendChild(_divBG); |
DOM createElement
2009. 9. 5. 13:29