“Reagir o tamanho da tela Detectar a tela” Respostas de código

Reagir o tamanho da tela Detectar a tela

import { useState, useEffect } from 'react';

function getWindowDimensions() {
  const { innerWidth: width, innerHeight: height } = window;
  return {
    width,
    height
  };
}

export default function useWindowDimensions() {
  const [windowDimensions, setWindowDimensions] = useState(getWindowDimensions());

  useEffect(() => {
    function handleResize() {
      setWindowDimensions(getWindowDimensions());
    }

    window.addEventListener('resize', handleResize);
    return () => window.removeEventListener('resize', handleResize);
  }, []);

  return windowDimensions;
}
DevPedrada

reaja js obter tamanho de tela

  console.log(window.innerHeight);
Dayanaohhnana

Respostas semelhantes a “Reagir o tamanho da tela Detectar a tela”

Perguntas semelhantes a “Reagir o tamanho da tela Detectar a tela”

Mais respostas relacionadas para “Reagir o tamanho da tela Detectar a tela” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código