수색…


화면 해상도 얻기

화면의 물리적 크기 (윈도우 크롬과 메뉴 바 / 실행기 포함)를 얻으려면 다음과 같이하십시오.

var width  = window.screen.width,
    height = window.screen.height;

화면의 "사용 가능한"영역 가져 오기

화면의 "사용 가능한"영역을 얻으려면 (즉, 화면의 가장자리에는 막대를 포함하지 않고 창 크롬과 다른 창을 포함하는 경우 :

var availableArea = {
    pos: {
        x: window.screen.availLeft,
        y: window.screen.availTop
    },
    size: {
        width: window.screen.availWidth,
        height: window.screen.availHeight
    }
};

화면에 대한 색상 정보 얻기

화면의 색상 및 픽셀 깊이를 결정하려면 :

var pixelDepth = window.screen.pixelDepth,
    colorDepth = window.screen.colorDepth;

Window innerWidth 및 innerHeight 속성

창 높이와 너비 가져 오기

var width = window.innerWidth
var height = window.innerHeight

페이지 너비 및 높이

현재 브라우저의 페이지 너비와 높이를 얻으려면 (예 : 프로그래밍 응답시)

function pageWidth() {
  return window.innerWidth != null? window.innerWidth : document.documentElement && document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body != null ? document.body.clientWidth : null;
}

function pageHeight() {
  return  window.innerHeight != null? window.innerHeight : document.documentElement && document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body != null? document.body.clientHeight : null;
}


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow