網頁中的寬與高
阿新 • • 發佈:2017-12-27
function ext window cli display osi left blog target
先設置網頁的大屏幕的寬高,以及點擊事件:
1 <div style="width : 2000px,height : 2000px" onmousedown = "ww()">
<div id = "ex" style = "width :100px,height:30px "></div>
</div>
再設置它的樣式:
1 *{ margin :0px; padding:0px; }
然後是js代碼部分:
1 function $(oId){ 2 return document.getElementById(oId); 3 }4 5 function ww(){ 6 var w= document.documentElement.clienWidth; 7 var h = document.documentElement.clienHeight; 8 var ww = window.pageXOffset; //pageXOffset 屬性返回文檔在窗口左上角水平滾動的像素 9 var hh = window.pageYOffset; 10 // pageYOffset屬性返回文檔在窗口垂直方向滾動的像素11 var sw = w/2+ww; 12 var sh = h/2+hh; 13 rs(sw,sh); //調用 14 } 15 16 function rs(sw,sh){ 17 $("ex").nextSibling.parentNode.removeChild( //先找到父節點再移除它 18 $("ex").nextSibling);//兄弟節點 19 var obj = document.createElement("div"); 20obj.style.width = "100px"; 21 obj.style.height = "100px"; 22 obj.style.position = "absolute"; 23 obj.style.display = "block"; 24 obj.style.top = sh+"px"; 25 obj.style.left = sw+"px"; 26 obj.style.backgroundColor = "red"; 27 $("hehe").appendChild(obj); 28 } 29
[演示效果](http://localhost:63342/demo/work6.html)
網頁中的寬與高