This article introduces you to the HTML implementation of obtaining the width and height of the browser's visible area (pure code). It has certain reference value. Friends in need can refer to it. I hope it will help You helped.
/** * 获取浏览器可视区域宽度 */ function getViewPortOffset() { if (window.innerWidth) { return { w: window.innerWidth, h: window.innerHeight } } else if (document.compatMode = "BackCompat") { return { w: document.body.clientWidth, h: document.body.clientHeigth } } else { return { w: document.documentElement.clientWidth, h: document.documentElement.clientHeight } } } console.log(getViewPortOffset());
Recommended related articles:
html implements obtaining browser scrolling distance (pure code)
html Analysis of image preloading (with code)
The above is the detailed content of HTML implementation to obtain the width and height of the browser's visible area (pure code). For more information, please follow other related articles on the PHP Chinese website!