일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- proxmox
- 리눅스
- php
- 윈도우10
- 자바스크립트
- mysql
- Rocky
- jQuery
- 알리익스프레스
- KB증권
- 아파치
- KB국민카드
- 티스토리
- 보르비스초월
- 소비전력
- ConoHa
- OpenWrt
- 복현오거리
- centos
- Apache
- PHP-FPM
- 알뜰폰
- 시놀로지
- iptime
- 램가스초월
- 라즈베리파이2
- 킹북이초월
- 스톤에이지
- 가상서버호스팅
- SKT
- Today
- Total
맛집 여행 캠핑 일상 생활
자바스크립트 스크린 및 브라우저 width height 값 알아내기 본문
자바스크립트 스크린 및 브라우저 width height 값 알아내기
모니터 스크린의 가로 세로 사이즈 값은 screen.width height 에서 알아낼 수 있다.
그리고 브라우저의 현재 좌표 값은 window.screenLeft screenTop ( 아래에 top. 을 붙인 이유는 iframe 안에서 알수있게 함이다. )
브라우저의 가로 및 세로 값은 두 종류인데 브라우저 자체의 크기(outerWidth, outerHeight)와 브라우저 안의 크기(innerWidth, innerHeight)가 있다.
<script>
function action_get_wh(event) {
var a = screen.width;
var b = screen.height;
var c = top.window.screenLeft;
var d = top.window.screenTop;
var e = top.window.outerWidth;
var f = top.window.outerHeight;
var g = top.window.innerWidth;
var h = top.window.innerHeight;
var txt = "screen.height : " + a + ", screen.width : " + b + "<br/>";
txt += "top.window.screenLeft : " + c + ", top.window.screenTop : " + d + "<br/>";
txt += "top.window.outerWidth : " + e + ", top.window.outerHeight : " + f + "<br/>";
txt += "top.window.innerWidth : " + g + ", top.window.innerHeight : " + h;
document.getElementById("debug_out").innerHTML = txt;
}
</script>
<button style="border:1px solid red;" onclick="action_get_wh(event)">클릭</button>
<div id="debug_out" style="width:auto;height:200px;border:1px solid red;cursor:pointer;">debug out</div>
테스트 해보세요.
'JAVASCRIPT' 카테고리의 다른 글
jQuery iframe 호출 로딩이미지 처리 (0) | 2016.07.08 |
---|---|
자바스크립트 iframe 안에서 최상위 scrollTop 가져오기 (0) | 2016.07.07 |
자바스크립트 마우스 클릭한 좌표 알아내기 (0) | 2016.07.07 |
자바스크립트 디버깅 하는 방법 (0) | 2016.07.07 |
자바스크립트 전화번호 체크 정규식 (0) | 2016.07.04 |