ScreenオブジェクトはWindowオブジェクトの一部であり、window.screenプロパティを通じてアクセスできる。
プロパティ | 説明 |
---|---|
availHeight | スクリーンの高さ(ウィンドウのタスクバーを除く) |
availWidth | スクリーンの幅(ウィンドウのタスクバーを除く) |
colorDepth | イメージ表示のための色パレットのビット輝度 |
height | スクリーン全体の高さ |
pixelDepth | スクリーンの解像度(ピクセルあたりのビット数) |
width | スクリーン全体の幅 |
スクリーンの高さ(ウィンドウのタスクバーを除く)
<script>
document.writeln(screen.availHeight);
</script>
スクリーンの幅(ウィンドウのタスクバーを除く)
<script>
document.writeln(screen.availWidth);
</script>
イメージ表示のための色パレットのビット輝度
<script>
document.writeln(screen.colorDepth);
</script>
スクリーン全体の高さ
<script>
document.writeln(screen.height);
</script>
スクリーンの解像度(ピクセルあたりのビット数)
<script>
document.writeln(screen.pixelDepth);
</script>
スクリーン全体の幅
<script>
document.writeln(screen.width);
</script>