LoginSignup
1
0

More than 3 years have passed since last update.

スクリーンオブジェクト

Last updated at Posted at 2017-08-18

screen (スクリーンオブジェクト)

モニタ画面(ディスプレイ)の色数やサイズ情報をなどを持っている。

ウィンドウを画面中央や指定位置に配置したい場合使用する。

No. プロパティ 説明 サンプル値
1 screen.width 画面の横幅 1680
2 screen.height 画面の縦幅 1050
3 screen.availWidth 使用可能な横幅 1680
4 screen.availHeight 使用可能な縦幅 961
5 screen.availTop 画面上から有効なピクセル 23
6 screen.availLeft 画面左から有効なピクセル 0
7 screen.colorDepth モニタ色深度 24 ※2の24乗色
8 screen.pixeDepth 仮装画面色深度 24 ※2の24乗色

確認用サンプルコード

for (i in screen) {
  console.log(i + "=" screen[i]);
}
1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0