Home  >  Article  >  Web Front-end  >  HTML implementation to obtain the width and height of the browser's visible area (pure code)

HTML implementation to obtain the width and height of the browser's visible area (pure code)

不言
不言Original
2018-08-02 09:41:122305browse

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn