खोज…


स्क्रीन रिज़ॉल्यूशन प्राप्त करना

स्क्रीन का भौतिक आकार प्राप्त करने के लिए (विंडो क्रोम और मेनूबार / लॉन्चर सहित):

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;

विंडो इनरविदथ और इनरहाइट गुण

खिड़की की ऊंचाई और चौड़ाई प्राप्त करें

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