“Размер окна JavaScript” Ответ

Как получить высоту окна в JavaScript

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

Получить размер окна JavaScript

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

JS Window Dimensions

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

Ширина проверки окна JS

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

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

Как получить размер окна в 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

Размер окна JavaScript

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

Ответы похожие на “Размер окна JavaScript”

Смотреть популярные ответы по языку

Смотреть другие языки программирования