Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 고차함수
- Push
- IntersectionObserver
- animation
- video
- ES6
- 모듈
- Promise
- array
- 이벤트 루프
- This
- slice
- 스크롤
- ajax
- async
- 문자열
- object
- input
- 이벤트
- json
- dom
- 애니메이션
- 비동기
- event
- 배열
- ios
- Flex
- 클로저
- scroll
- 이벤트 위임
Archives
- Today
- Total
FEDev Story
스크린의 크기 본문
스크린의 크기는 모니터의 크기와 브라우저 뷰포트의 크기가 있다. 이를 알아내는 방법은 아래와 같다. (실행)
<script>
console.log('window.innerWidth:', window.innerWidth, 'window.innerHeight:', window.innerHeight);
console.log('screen.width:', screen.width, 'screen.height:', screen.height);
</script>
window.inner*은 뷰포트의 크기를 나타내고, screen.*은 스크린의 크기, 즉, 모니터의 해상도를 나타낸다.
'Javascript > DOM' 카테고리의 다른 글
DOM 변경 (0) | 2017.11.01 |
---|---|
DOM 탐색 (0) | 2017.10.24 |
스크롤 제어 (0) | 2017.02.13 |
Viewport (0) | 2017.02.13 |
요소의 크기와 위치 (0) | 2017.02.13 |
Comments