본문 바로가기
Coding/JavaScript

[JavaScript] 자바스크립트로 브라우저 크기 변경 및 사이즈 확인 하는 방법 !!

by 포스트it 2023. 4. 18.
반응형

 

[JavaScript] 자바스크립트로 브라우저 크기 변경 및 사이즈 확인 하는 방법 !!

창크기 변경 되는 시점이나 width, height 알고 싶을때 사용하시면 됩니다 :)

 

예제코드
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <h1>Test</h1>
    <div>사이즈는</div>
    <div id="width"></div>
    <div id="height"></div>
</body>

</html>
<script>
    window.onresize = function () {
        const width = window.innerWidth;
        const height = window.innerHeight;

        document.getElementById("width").innerHTML = width;
        document.getElementById("height").innerHTML = height;
        console.log(width);
        console.log(height);
    }
</script>

 

728x90
반응형

댓글