“100VH Mobile” Kod odpowiedzi

CSS VW nie pracuje na telefonie komórkowym

//In your js file:
window.addEventListener('resize', () => { 
  document.querySelector(':root').style
    .setProperty('--vw', window.innerWidth/100 + 'px');
})

//Css
width: calc(100 * var(--vw));
Helpless Hippopotamus

100VH Mobile

const documentHeight = () => {
 const doc = document.documentElement
 doc.style.setProperty('--doc-height', `${window.innerHeight}px`)
}
window.addEventListener(‘resize’, documentHeight)
documentHeight()
Lucas Juan

Odpowiedzi podobne do “100VH Mobile”

Pytania podobne do “100VH Mobile”

Więcej pokrewnych odpowiedzi na “100VH Mobile” w JavaScript

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

Przeglądaj inne języki kodu