window.innerHeight를 사용하면 됩니다.
javascript
console.log("window.innerHeight:", window.innerHeight);
제 컴퓨터에서는 920이라고 나오네요.
실제로 재어보니 스크롤 높이가 딱 920이네요.
이렇게 브라우저의 안쪽 높이가 innerHeight입니다.
그럼 다른 표현도 있겠네?
console.log("window.innerHeight:", window.innerHeight); //빨간색
console.log("window.outerHeight:", window.outerHeight); //파란색
console.log("window.innerWidth:", window.innerWidth); //빨간색
console.log("window.outerWidth:", window.outerWidth); //파란색
728x90
'프로그램 강좌' 카테고리의 다른 글
Github Copilot VS Code 설치방법 #2 (0) | 2022.11.10 |
---|---|
Github Copilot VS Code 설치방법 #1 (0) | 2022.11.08 |
정규표현식 이메일 형식에 맞게 설정하는 방법 (0) | 2022.07.22 |
Can’t find Module ‘@aws-sdk/abort-controller’ 오류 해결 방법 (0) | 2022.07.13 |
Postman 로그인 상태에서 글쓰기(feat. cookie) (0) | 2022.05.27 |