aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/screen/index.html
blob: ff49e2676bd8b09a6378bcabe63406ce09592946 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
---
title: Screen
slug: Web/API/Screen
tags:
  - API
  - CSSOM View
  - Interface
  - Reference
translation_of: Web/API/Screen
---
<div>{{APIRef("CSSOM")}}</div>

<p><code>Screen</code> インターフェイスは画面を表し、通常は、現在のウィンドウが描画されている画面であり、 {{DOMxRef("window.screen")}} を使用して取得されます。</p>

<p>なお、ブラウザーはブラウザーのウィンドウの中心がどの画面にあるかを検出することで、報告する現在の画面がどれかを判断します。</p>

<h2 id="Example" name="Example">プロパティ</h2>

<dl>
 <dt>{{DOMxRef("Screen.availTop")}} {{Non-standard_Inline}}</dt>
 <dd>オペレーティングシステムによって表示されるウィンドウ上のタスクバーなどの、固定あるいは半固定のユーザーインターフェイス部分を含まない、最初のピクセルの y 座標を指します。</dd>
 <dt>{{DOMxRef("Screen.availLeft")}} {{Non-standard_Inline}}</dt>
 <dd>スクリーンの左端からの、最初の利用可能なピクセルの値を返します。​</dd>
 <dt>{{DOMxRef("Screen.availHeight")}}</dt>
 <dd>固定あるいは半固定のユーザーインターフェイス部分を除いたスクリーンの高さをピクセルで表します。</dd>
 <dt>{{DOMxRef("Screen.availWidth")}}</dt>
 <dd>ウィンドウで利用可能な水平方向のスペースの合計をピクセルで返します。</dd>
 <dt>{{DOMxRef("Screen.colorDepth")}}</dt>
 <dd>画面の色深度を返します。</dd>
 <dt>{{DOMxRef("Screen.height")}}</dt>
 <dd>画面の高さをピクセルで返します。</dd>
 <dt>{{DOMxRef("Screen.left")}} {{Non-standard_Inline}}</dt>
 <dd>メイン画面の左端から現在の画面の左端までの距離をピクセルで返します。</dd>
 <dt>{{DOMxRef("Screen.orientation")}}</dt>
 <dd>現在の画面の向きを返します。</dd>
 <dt>{{DOMxRef("Screen.pixelDepth")}}</dt>
 <dd>画面のピット深度を取得します。</dd>
 <dt>{{DOMxRef("Screen.top")}} {{Non-standard_Inline}}</dt>
 <dd>現在の画面の上端からの距離をピクセルで返します。 </dd>
 <dt>{{DOMxRef("Screen.width")}}</dt>
 <dd>画面の幅を返します。</dd>
 <dt>{{DOMxRef("Screen.mozEnabled")}} {{Non-standard_Inline}} {{Deprecated_Inline}}{{Gecko_MinVersion_Inline(12)}}</dt>
 <dd>ブール値。<code>false</code> に設定すると、デバイスの画面がオフになります。</dd>
 <dt>{{DOMxRef("Screen.mozBrightness")}} {{Non-standard_Inline}} {{Deprecated_Inline}}{{Gecko_MinVersion_Inline(12)}}</dt>
 <dd>デバイスの画面の明るさをコントロールします。0 から 1.0 までの double で指定します。</dd>
</dl>

<h3 id="Events_handler" name="Events_handler">イベントハンドラー</h3>

<dl>
 <dt>{{DOMxRef("Screen.onorientationchange")}} {{Deprecated_Inline}}</dt>
 <dd>{{Event("orientationchange")}} イベントのハンドラー。</dd>
</dl>

<h2 id="Methods" name="Methods">メソッド</h2>

<dl>
 <dt>{{DOMxRef("Screen.lockOrientation")}}</dt>
 <dd>画面の向きをロックします (全画面かインストールしたアプリでのみ動作します)</dd>
 <dt>{{DOMxRef("Screen.unlockOrientation")}}</dt>
 <dd>画面の向きのロックを解除します。 (全画面時かインストールしたアプリでのみ動作します)</dd>
</dl>

<p>メソッドは {{DOMxRef("EventTarget")}} から継承されています。</p>

<p>{{Page("/en-US/docs/Web/API/EventTarget", "Methods")}}</p>

<h2 id="Example" name="Example"></h2>

<pre class="brush:js">if (screen.pixelDepth &lt; 8) {
  // 色数の少ないバージョンのページを使う
} else {
  // 通常の色数のページを使う
}
</pre>

<h2 id="Specification" name="Specification">仕様書</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">状態</th>
   <th scope="col">備考</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName("CSSOM View", "#the-screen-interface", "Screen")}}</td>
   <td>{{Spec2("CSSOM View")}}</td>
   <td>初回定義</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>

<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>

<p>{{Compat("api.Screen")}}</p>