您好,登錄后才能下訂單哦!
這篇文章主要介紹Html中如何操作頁面、可視區(qū)、屏幕等寬高屬性,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
關(guān)于頁面、可視區(qū)、屏幕等一些相關(guān)的寬高屬性
function size(){ document.write( "屏幕分辨率為:"+screen.width+"*"+screen.height +"<br />"+ "屏幕可用大小:"+screen.availWidth+"*"+screen.availHeight +"<br />"+ "網(wǎng)頁可見區(qū)域?qū)挘?quot;+document.body.clientWidth +"<br />"+ "網(wǎng)頁可見區(qū)域高:"+document.body.clientHeight +"<br />"+ "瀏覽器窗口寬:"+document.documentElement.clientWidth +"<br />"+ "瀏覽器窗口高:"+document.documentElement.clientHeight +"<br />"+ "html所有元素寬:"+document.documentElement.offsetWidth +"<br />"+ "html所有元素高:"+document.documentElement.offsetHeight +"<br />"+ "網(wǎng)頁可見區(qū)域?qū)?包括邊線的寬):"+document.body.offsetWidth +"<br />"+ "網(wǎng)頁可見區(qū)域高(包括邊線的寬):"+document.body.offsetHeight +"<br />"+ "網(wǎng)頁正文全文寬:"+document.body.scrollWidth +"<br />"+ "網(wǎng)頁正文全文高:"+document.body.scrollHeight +"<br />"+ "網(wǎng)頁被卷去的高:"+document.body.scrollTop +"<br />"+ "網(wǎng)頁被卷去的左:"+document.body.scrollLeft +"<br />"+ "網(wǎng)頁正文部分上:"+window.screenTop +"<br />"+ "網(wǎng)頁正文部分左:"+window.screenLeft +"<br />"+ "屏幕分辨率的高:"+window.screen.height +"<br />"+ "屏幕分辨率的寬:"+window.screen.width +"<br />"+ "屏幕可用工作區(qū)高度:"+window.screen.availHeight +"<br />"+ "屏幕可用工作區(qū)寬度:"+window.screen.availWidth ); }
補(bǔ)充下,關(guān)于html dom元素都有一些關(guān)于位置,尺寸大小的屬性,如下
offsetWidth | clientWidth | scrollWidth |
offsetHeight | clientHeight | scrollHeight |
offsetLeft | clientLeft | scrollLeft |
offsetTop | clientTop | scrollTop |
1. clientHeight和clientWidth用于描述元素內(nèi)尺寸,是指 元素內(nèi)容+內(nèi)邊距 大小,不包括邊框(IE下實(shí)際包括)、外邊距、滾動(dòng)條部分
2. offsetHeight和offsetWidth用于描述元素外尺寸,是指 元素內(nèi)容+內(nèi)邊距+邊框,不包括外邊距和滾動(dòng)條部分
3. clientTop和clientLeft返回內(nèi)邊距的邊緣和邊框的外邊緣之間的水平和垂直距離,也就是左,上邊框?qū)挾?/p>
4. offsetTop和offsetLeft表示該元素的左上角(邊框外邊緣)與已定位的父容器(offsetParent對象)左上角的距離
以上是Html中如何操作頁面、可視區(qū)、屏幕等寬高屬性的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。