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

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

var w = window.innerWidth;
var h = window.innerHeight;
VasteMonde

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

Получить ширину экрана JavaScript

window.screen.width
//or just
screen.width
TC5550

Java Script Найти размер экрана устройства

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

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

JS знает размер отображения экрана

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”

Вопросы похожие на “Получить размер окна JavaScript”

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

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