“Rozmiar okna JavaScript” Kod odpowiedzi

Jak uzyskać wysokość okna w JavaScript

//get screen height of the device by using
window.innerHeight
//get screen width of the device by using
window.innerWidth
Pleasant Partridge

Pobierz JavaScript Rozmiar okna

const window {
  width: window.innerWidth,
  height: window.innerHeight
}
Cheerful Cockroach

Wymiary okien JS

// better than using window.innerWidth / window.innerHeight 
// because of scrollbars
const client = {
      width: document.documentElement.clientWidth,
      height: document.documentElement.clientHeight
}
P.S.

JS Sprawdź szerokość okna

// Size of browser viewport.
$(window).height();
$(window).width();

// Size of HTML document (same as pageHeight/pageWidth in screenshot).
$(document).height();
$(document).width();
Cheerful Cheetah

Jak uzyskać rozmiar okna w JavaScript

var win = window,
    doc = document,
    docElem = doc.documentElement,
    body = doc.getElementsByTagName('body')[0],
    x = win.innerWidth || docElem.clientWidth || body.clientWidth,
    y = win.innerHeight|| docElem.clientHeight|| body.clientHeight;
alert(x + ' × ' + y);
Arex

Rozmiar okna JavaScript

let w = window.innerWidth;
let h = window.innerHeight;
naly moslih

Odpowiedzi podobne do “Rozmiar okna JavaScript”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu