JavaScript Screenオブジェクト

ScreenオブジェクトはWindowオブジェクトの一部であり、window.screenプロパティを通じてアクセスできる。

Screenオブジェクトのプロパティ

Screenオブジェクトのプロパティ
プロパティ 説明
availHeight スクリーンの高さ(ウィンドウのタスクバーを除く)
availWidth スクリーンの幅(ウィンドウのタスクバーを除く)
colorDepth イメージ表示のための色パレットのビット輝度
height スクリーン全体の高さ
pixelDepth スクリーンの解像度(ピクセルあたりのビット数)
width スクリーン全体の幅

availHeightプロパティ

スクリーンの高さ(ウィンドウのタスクバーを除く)

<script>
  document.writeln(screen.availHeight);
</script>

availWidthプロパティ

スクリーンの幅(ウィンドウのタスクバーを除く)

<script>
  document.writeln(screen.availWidth);
</script>

colorDepthプロパティ

イメージ表示のための色パレットのビット輝度

<script>
  document.writeln(screen.colorDepth);
</script>

heightプロパティ

スクリーン全体の高さ

<script>
  document.writeln(screen.height);
</script>

pixelDepthプロパティ

スクリーンの解像度(ピクセルあたりのビット数)

<script>
  document.writeln(screen.pixelDepth);
</script>

widthプロパティ

スクリーン全体の幅

<script>
  document.writeln(screen.width);
</script>