画面解像度チェッカー

ユーザーの画面解像度をリアルタイムで表示するツールです。フロントエンド開発者、デザイナー、ネットワークエンジニアにとって、画面サイズ、ブラウザウィンドウの大きさ、実際のピクセル解像度(Retina 高解像度対応を含む)、デバイスの向き、ユーザーエージェント情報などを素早く把握するのに役立ちます。

画面解像度

{{ physicalWidth }} x {{ physicalHeight }}

Javascript

screen.width x screen.height {{ screen.width }} x {{ screen.height }}
screen.availWidth x screen.availHeight {{ screen.availWidth }} x {{ screen.availHeight }}
window.innerWidth x window.innerHeight {{ window.innerWidth }} x {{ window.innerHeight }}
window.outerWidth x window.outerHeight {{ window.outerWidth }} x {{ window.outerHeight }}
window.devicePixelRatio {{ devicePixelRatio }}
デバイスの向き (JS) {{ orientation }}
デバイスの向き (CSS) {{ cssOrientation }}
{{ userAgent }}
Klook.com