ウィンドウサイズを調べたい

高さ

HTML

//画面サイズを調べる
<span class="value-width"></span>
<span class="value-height"></span>

JS

// Windowサイズを調べたい
window.addEventListener('load',resizeHandler);

function resizeHandler(event){
    const sw = innerWidth;
    const sh = innerHeight;
    
    document.querySelector('.value-width').innerHTML = `${sw}px`;
    document.querySelector('.value-height').innerHTML = `${sh}px`;
} 

プロフィール

プロフィール
ぬえさぶろう
名前 ぬえさぶろう
仕事 PCの部品管理・取扱説明書作成
好物 納豆・カレー
技能
  • PhotoShop
  • Illustrator
  • Animate
  • AfterEffects
  • Premire
toTop