“Tamanho da janela JavaScript” Respostas de código

Como obter a altura da janela em JavaScript

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

Obtenha o tamanho da janela JavaScript

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

JS Dimensões da janela

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

Largura da janela de verificação 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

Como obter o tamanho da janela em 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

Tamanho da janela JavaScript

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

Respostas semelhantes a “Tamanho da janela JavaScript”

Procure respostas de código populares por idioma

Procurar outros idiomas de código