aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/screen
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/screen
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/screen')
-rw-r--r--files/ja/web/api/screen/availheight/index.html83
-rw-r--r--files/ja/web/api/screen/availleft/index.html45
-rw-r--r--files/ja/web/api/screen/availtop/index.html38
-rw-r--r--files/ja/web/api/screen/availwidth/index.html23
-rw-r--r--files/ja/web/api/screen/colordepth/index.html59
-rw-r--r--files/ja/web/api/screen/height/index.html58
-rw-r--r--files/ja/web/api/screen/index.html100
-rw-r--r--files/ja/web/api/screen/left/index.html34
-rw-r--r--files/ja/web/api/screen/lockorientation/index.html115
-rw-r--r--files/ja/web/api/screen/mozbrightness/index.html30
-rw-r--r--files/ja/web/api/screen/mozenabled/index.html30
-rw-r--r--files/ja/web/api/screen/onorientationchange/index.html58
-rw-r--r--files/ja/web/api/screen/orientation/index.html73
-rw-r--r--files/ja/web/api/screen/pixeldepth/index.html60
-rw-r--r--files/ja/web/api/screen/top/index.html37
-rw-r--r--files/ja/web/api/screen/unlockorientation/index.html74
-rw-r--r--files/ja/web/api/screen/width/index.html57
17 files changed, 974 insertions, 0 deletions
diff --git a/files/ja/web/api/screen/availheight/index.html b/files/ja/web/api/screen/availheight/index.html
new file mode 100644
index 0000000000..88c93ccac0
--- /dev/null
+++ b/files/ja/web/api/screen/availheight/index.html
@@ -0,0 +1,83 @@
+---
+title: Screen.availHeight
+slug: Web/API/Screen/availHeight
+tags:
+ - API
+ - CSSOM View
+ - Property
+ - Reference
+ - Screen size
+ - availHeight
+ - プロパティ
+translation_of: Web/API/Screen/availHeight
+---
+<p>{{APIRef("CSSOM")}}</p>
+
+<p>{{DOMxRef("Screen")}} インターフェイスの <code><strong>availHeight</strong></code> プロパティは読み取り専用で、画面のウェブコンテンツに利用することができる範囲の高さを、 CSS ピクセル単位で返します。 {{DOMxRef("Screen")}} は {{DOMxRef("Window")}} インターフェイスの {{DOMxRef("Window.screen", "window.screen")}} プロパティから得ることができますので、 <code>availHeight</code> は <code>window.screen.availHeight</code> を使用してアクセスすることができます。</p>
+
+<p>同様に、 {{DOMxRef("Screen.availWidth")}} を使用してブラウザーがウェブコンテンツに利用することができる水平方向のピクセル数を取得することができます。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate">let <var>availHeight</var> = <var>window</var>.screen.availHeight;
+</pre>
+
+<h3 id="Value" name="Value">値</h3>
+
+<p>画面の利用可能な空間の高さを示す CSS ピクセル数を示す数値。これは、 {{DOMxRef("Screen.height", "window.screen.height")}} の値よりも大きくすることはできず、端末やユーザーエージェントがそれ自身のために垂直方向の空間を確保している場合は、より小さくなります。</p>
+
+<p>例えば、 Dock が画面の一番下 (これが既定) にある Mac の場合、 <code>availHeight</code> の値は、下図のように、 <code>height</code> (CSS ピクセル単位の画面全体の高さ) から Dock とメニューバーの高さを差し引いた値になります。</p>
+
+<p><a href="/files/15243/availHeight-diagram.svg"><img alt="Screen.availHeight が Screen.height と画面の内容にどのように関係しているかを示す図" src="https://mdn.mozillademos.org/files/15243/availHeight-diagram.svg" style="height: 312px; width: 500px;"></a></p>
+
+<h2 id="Example" name="Example">例</h2>
+
+<p>ウェブアプリケーションで新しいウィンドウを開く必要がある場合、例えば複数のパネルを含むことができるツールパレットのように、それが利用可能な垂直方向のスペース全体を占めるように配置したい場合、ここで見られるものと同様のコードを使用して行うことができます。</p>
+
+<p>メインウィンドウでは、パネルを開くときに以下のようなコードを使用します。</p>
+
+<pre class="brush: html; notranslate">let paletteWindow = window.open("panels.html", "Panels", "left=0, top=0, width=200");</pre>
+
+<p>Panels ウィンドウの HTML (<code>panels.html</code>) には、独自の JavaScript コードがあり、ウィンドウが作成されるとすぐに実行されます。このコードは、特定のイベント (すべてのイベント) を待つ必要もありません。このコードは、利用可能な空間に基づいてウィンドウの寸法の変更を処理します。</p>
+
+<pre class="brush: js; notranslate">window.outerHeight = window.screen.availHeight;</pre>
+
+<p>結果は以下のようになります。パネルウィンドウが画面の左にある垂直方向の空間をすべて埋めていることに注意してください。</p>
+
+<p><a href="https://mdn.mozillademos.org/files/15247/screen-availHeight.png"><img alt="Screenshot of the example for Screen.availHeight" src="https://mdn.mozillademos.org/files/15247/screen-availHeight.png" style="height: 338px; width: 600px;"></a></p>
+
+<p>Windows システムでは、タスクバーや空間を必要とする他のインターフェイス要素のための空間を残して、利用可能なすべての垂直方向の空間を使用するようにウィンドウを開き、垂直方向に寸法を調整することで、同様に機能します。</p>
+
+<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', '#dom-screen-availheight', 'Screen.availHeight')}}</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.availHeight")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{DOMxRef("Window")}}</li>
+ <li>{{DOMxRef("Screen")}}</li>
+ <li>{{DOMxRef("Screen.availWidth")}}</li>
+ <li>{{DOMxRef("Window.height")}}</li>
+</ul>
diff --git a/files/ja/web/api/screen/availleft/index.html b/files/ja/web/api/screen/availleft/index.html
new file mode 100644
index 0000000000..5fe1a35cb9
--- /dev/null
+++ b/files/ja/web/api/screen/availleft/index.html
@@ -0,0 +1,45 @@
+---
+title: Screen.availLeft
+slug: Web/API/Screen/availLeft
+tags:
+ - API
+ - 'API:Mozilla Extensions'
+ - 'API:WebKit Extensions'
+ - DOM
+ - Non-standard
+ - Property
+ - プロパティ
+translation_of: Web/API/Screen/availLeft
+---
+<div>{{APIRef("CSSOM")}}{{Non-standard_Header}}</div>
+
+<p>画面の左端から利用できる最初の有効ピクセルを返します。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox">let <var>availLeft</var> = <var>window</var>.screen.availLeft;</pre>
+
+<h2 id="Example" name="Example">例</h2>
+
+<pre class="brush: js">let setX = window.screen.width - window.screen.availLeft;
+let setY = window.screen.height - window.screen.availTop;
+window.moveTo(setX, setY);
+</pre>
+
+<h2 id="Notes" name="Notes">メモ</h2>
+
+<p>ほとんどの場合においてこのプロパティは、 0 を返します。</p>
+
+<p>このプロパティを2画面で使用した場合、右側の画面については左側の画面の幅のピクセル数の値 (したがって、右側の画面の左端の X 座標を示す) として評価されます。</p>
+
+<p>Windows では、このプロパティはどの画面が主画面として設定されているかによって異なり、主画面に対して左端の利用可能なピクセルのX座標を返します。つまり、主画面の左端は、左端の画面でなくても常に X 座標が 0 になります。副画面が主画面の左側にある場合は、補正するために負の X 座標になります。</p>
+
+<p>[1] [2] - 左の画面では <em>availLeft</em> は <strong>0</strong> を返し、右の画面では左の画面の <strong>width</strong> を返す</p>
+
+<p>[2] [1] - 左の画面では <em>availLeft</em> は右画面の <strong>-width</strong> を返し、右の画面では <strong>0</strong> を返す</p>
+
+<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.availLeft")}}</p>
diff --git a/files/ja/web/api/screen/availtop/index.html b/files/ja/web/api/screen/availtop/index.html
new file mode 100644
index 0000000000..a8cba7bc0c
--- /dev/null
+++ b/files/ja/web/api/screen/availtop/index.html
@@ -0,0 +1,38 @@
+---
+title: Screen.availTop
+slug: Web/API/Screen/availTop
+tags:
+ - API
+ - 'API:Mozilla Extensions'
+ - 'API:WebKit Extensions'
+ - DOM
+ - Non-standard
+ - Property
+ - プロパティ
+translation_of: Web/API/Screen/availTop
+---
+<p>{{APIRef("CSSOM")}}{{Non-standard_Header}}</p>
+
+<p>固定あるいは半固定されているユーザーインターフェイス部分を含まない、最初のピクセルの y 座標を示します。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate">let <var>availTop</var> = <var>window</var>.screen.availTop;
+</pre>
+
+<h2 id="Example" name="Example">例</h2>
+
+<pre class="brush: js; notranslate">let setX = window.screen.width - window.screen.availLeft;
+let setY = window.screen.height - window.screen.availTop;
+window.moveTo(setX, setY);
+</pre>
+
+<h2 id="Notes" name="Notes">注</h2>
+
+<p>ほとんどの場合において、このプロパティは、 <code>0</code> を返します。</p>
+
+<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.availTop")}}</p>
diff --git a/files/ja/web/api/screen/availwidth/index.html b/files/ja/web/api/screen/availwidth/index.html
new file mode 100644
index 0000000000..244320ecfa
--- /dev/null
+++ b/files/ja/web/api/screen/availwidth/index.html
@@ -0,0 +1,23 @@
+---
+title: window.screen.availWidth
+slug: Web/API/Screen/availWidth
+tags:
+ - DOM
+ - DOM_0
+ - Gecko
+ - Gecko DOM Reference
+ - screen
+translation_of: Web/API/Screen/availWidth
+---
+<div>
+ {{ApiRef}}</div>
+<h2 id="Summary" name="Summary">概要</h2>
+<p>ウィンドウで利用可能な水平空間の大きさをピクセル単位で返します。</p>
+<h2 id="Syntax" name="Syntax">構文</h2>
+<pre class="syntaxbox"><var>iAvail</var> = window.screen.availWidth</pre>
+<h2 id="Example" name="Example">例</h2>
+<pre class="brush:js">var screenAvileWidth = window.screen.availWidth;
+
+console.log(screenAvileWidth);</pre>
+<h2 id="Specification" name="Specification">仕様</h2>
+<p>{{DOM0}}</p>
diff --git a/files/ja/web/api/screen/colordepth/index.html b/files/ja/web/api/screen/colordepth/index.html
new file mode 100644
index 0000000000..b08de5a98e
--- /dev/null
+++ b/files/ja/web/api/screen/colordepth/index.html
@@ -0,0 +1,59 @@
+---
+title: Screen.colorDepth
+slug: Web/API/Screen/colorDepth
+tags:
+ - API
+ - CSSOM View
+ - Property
+ - Reference
+ - プロパティ
+translation_of: Web/API/Screen/colorDepth
+---
+<p>{{APIRef("CSSOM")}}</p>
+
+<p><strong><code>Screen.colorDepth</code></strong> は読み取り専用プロパティで、画面の色震度を返します。 CSSOM により、互換性の理由から <code>24</code> を返す実装もあります。そうでないものについては、ブラウザーの互換性の節を参照してください。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate"><var>bitDepth</var> = window.screen.colorDepth;</pre>
+
+<h2 id="Example" name="Example">例</h2>
+
+<pre class="brush: js; notranslate">// 画面の色震度をチェック
+if ( window.screen.colorDepth &lt; 8) {
+ // Use low-color version of page
+} else {
+ // Use regular, colorful page
+}
+</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', '#dom-screen-colordepth', 'Screen.colorDepth')}}</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.colorDepth")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{DOMxRef("Screen.pixelDepth")}}</li>
+</ul>
diff --git a/files/ja/web/api/screen/height/index.html b/files/ja/web/api/screen/height/index.html
new file mode 100644
index 0000000000..96a14b18ef
--- /dev/null
+++ b/files/ja/web/api/screen/height/index.html
@@ -0,0 +1,58 @@
+---
+title: Screen.height
+slug: Web/API/Screen/height
+tags:
+ - API
+ - CSSOM View
+ - NeedsMarkupWork
+ - NeedsMobileBrowserCompatibility
+ - Property
+ - Reference
+ - プロパティ
+translation_of: Web/API/Screen/height
+---
+<p>{{APIRef("CSSOM")}}</p>
+
+<p><code><strong>Screen.height</strong></code> は読み取り専用プロパティで、画面の高さをピクセル数で返します。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate">var <var>height</var> = window.screen.height</pre>
+
+<h2 id="Example" name="Example">例</h2>
+
+<pre class="brush: js; notranslate">if (window.screen.availHeight !== window.screen.height) {
+ // Something is occupying some screen real estate!
+}
+</pre>
+
+<h2 id="Notes" name="Notes">注</h2>
+
+<p>このプロパティによって与えられる高さのすべてがウィンドウに利用できるわけではないことに注意してください。タスクバーなどのウィジェットや、 OS と統合された他の特殊なアプリケーションウィンドウ (例えば、ウィンドウの上で追加のツールバーのように動作するように最小化された Spinner プレイヤーなど) は、ブラウザーウィンドウや他のアプリケーションに利用可能な空間の量を減らすことがあります。</p>
+
+<p>Internet Explorer は、画面の高さを報告する際に拡大率の設定を考慮します。拡大率が 100% に設定されている場合のみ、実際の画面の高さを返します。</p>
+
+<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', '#dom-screen-height', 'Screen.height')}}</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.height")}}</p>
diff --git a/files/ja/web/api/screen/index.html b/files/ja/web/api/screen/index.html
new file mode 100644
index 0000000000..ff49e2676b
--- /dev/null
+++ b/files/ja/web/api/screen/index.html
@@ -0,0 +1,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>
diff --git a/files/ja/web/api/screen/left/index.html b/files/ja/web/api/screen/left/index.html
new file mode 100644
index 0000000000..9e622ef110
--- /dev/null
+++ b/files/ja/web/api/screen/left/index.html
@@ -0,0 +1,34 @@
+---
+title: Screen.left
+slug: Web/API/Screen/left
+tags:
+ - API
+ - 'API:Microsoft Extensions'
+ - 'API:Mozilla Extensions'
+ - 'API:WebKit Extensions'
+ - DOM
+ - Non-standard
+ - Property
+ - プロパティ
+translation_of: Web/API/Screen/left
+---
+<p>{{APIRef("CSSOM")}}{{Non-standard_Header}}</p>
+
+<p>メイン画面の左端から現在の画面の左端までの距離をピクセル単位で返します。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate">var <var>left</var> = window.screen.left;
+</pre>
+
+<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.left")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{DOMxRef("screen.top")}}</li>
+</ul>
diff --git a/files/ja/web/api/screen/lockorientation/index.html b/files/ja/web/api/screen/lockorientation/index.html
new file mode 100644
index 0000000000..19fbbaf291
--- /dev/null
+++ b/files/ja/web/api/screen/lockorientation/index.html
@@ -0,0 +1,115 @@
+---
+title: Screen.lockOrientation()
+slug: Web/API/Screen/lockOrientation
+tags:
+ - API
+ - CSSOM View
+ - Method
+ - NeedsUpdate
+ - Screen Orientation
+ - screen
+ - メソッド
+translation_of: Web/API/Screen/lockOrientation
+---
+<p>{{APIRef("Screen Orientation API")}}{{Deprecated_Header}}</p>
+
+<p><strong><code>lockOrientation()</code></strong> は {{DOMxRef("Screen")}} インターフェイスのメソッドで、画面を特定の方向にロックします。代わりに {{DOMxRef("ScreenOrientation.lock()")}} メソッドを使用してください。</p>
+
+<div class="note">
+<p><strong>注:</strong> このメソッドはインストールされたウェブアプリまたは<a href="/ja/docs/Web/Guide/DOM/Using_full_screen_mode">全画面モード</a>のウェブページでのみ動作します。</p>
+</div>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate"><var>lockAllowed</var> = window.screen.lockOrientation(<var>orientation</var>);</pre>
+
+<h3 id="Parameters" name="Parameters">引数</h3>
+
+<dl>
+ <dt><code><var>orientation</var></code></dt>
+ <dd>画面をロックする向きです。文字列または文字列の配列で指定します。複数の文字列を渡したときは、選択した向きでのみ回転できるようになります。</dd>
+</dl>
+
+<p>以下の文字列表現が向きとして指定できます。</p>
+
+<dl>
+ <dt><code>portrait-primary</code></dt>
+ <dd>メインのポートレートモードであるスクリーンの向きを表します。メインのポートレートモードとは、デバイスを通常の向きが縦向きの場合と、デバイスの通常の位置が横向きの場合に時計回りに 90° 回転させた向きの場合です。どの向きが通常の向きであるかは、デバイスによって異なります。</dd>
+ <dt><code>portrait-secondary</code></dt>
+ <dd>2番目のポートレートモードであるスクリーンの向きを表します。2番目のポートレートモードとは、デバイスを通常の向きが縦向きでそこから 180° 回転させた場合と、デバイスの通常の位置が横向きの場合に反時計回りに 90° 回転させた向きの場合です。どの向きが通常の向きであるかは、デバイスによって異なります。</dd>
+ <dt><code>landscape-primary</code></dt>
+ <dd>メインのランドスケープモードであるスクリーンの向きを表します。メインのランドスケープモードとは、デバイスを通常の向きが横向きの場合と、デバイスの通常の位置が縦向きの場合に時計回りに 90° 回転させた向きの場合です。どの向きが通常の向きであるかは、デバイスによって異なります。</dd>
+ <dt><code>landscape-secondary</code></dt>
+ <dd>2番目のランドスケープモードであるスクリーンの向きを表します。2番目のランドスケープモードとは、デバイスを通常の向きが横向きでそこから 180° 回転させた場合と、デバイスの通常の位置が縦向きの場合に反時計回りに 90° 回転させた向きの場合です。どの向きが通常の向きであるかは、デバイスによって異なります。</dd>
+ <dt><code>portrait</code></dt>
+ <dd><code>portrait-primary</code> と <code>portrait-secondary</code> の両方を表します。</dd>
+ <dt><code>landscape</code></dt>
+ <dd><code>landscape-primary</code> と <code>landscape-secondary</code> の両方を表します。</dd>
+ <dt><code>default</code></dt>
+ <dd>デバイスに自然な向きによって <code>portrait-primary</code> または <code>landscape-primary</code> が選ばれます。たとえば、ディスプレイの解像度が 1280*800 なら、 <code>default</code> は <code>landscape</code> になるでしょうし、800*1280 なら、 <code>default</code> は <code>portrait</code> になるでしょう。</dd>
+</dl>
+
+<div class="note">
+<p><strong>注:</strong> 複数のロックが同時に指定されることがあります。そのため、1つの向きにのみロックがセットされた場合には、スクリーンの向きはロックが解除されるまで決して変更されません。もしそうでなければ、デバイスがロックされた向きを含む複数の向きの間で、スクリーンの向きが1つの向きから別の向きへと移り変わってしまうことになります。</p>
+</div>
+
+<h3 id="Return_value" name="Return_value">返値</h3>
+
+<p>向きの固定が許可された場合には <code>true</code> が返り、向きのロックが拒否された場合には <code>false</code> が返ります。返値は、必ずしもスクリーンの向きが実際にロックされていることを示すわけではないことに注意してください。遅延がある可能性があるからです。</p>
+
+<h2 id="Examples" name="Examples">例</h2>
+
+<h3 id="Usage_with_a_DOMString_argument" name="Usage_with_a_DOMString_argument"><code>DOMString</code> 引数での使用方法</h3>
+
+<pre class="brush: js; notranslate">screen.lockOrientationUniversal = screen.lockOrientation || screen.mozLockOrientation || screen.msLockOrientation;
+
+if (screen.lockOrientationUniversal("landscape-primary")) {
+ // 向きがロックされた
+} else {
+ // 向きのロックに失敗した
+}
+</pre>
+
+<h3 id="Usage_with_an_Array_argument" name="Usage_with_an_Array_argument"><code>Array</code> 引数での使用方法</h3>
+
+<pre class="brush: js; notranslate">screen.lockOrientationUniversal = screen.lockOrientation || screen.mozLockOrientation || screen.msLockOrientation;
+
+if (screen.lockOrientationUniversal(["landscape-primary", "landscape-secondary"])) {
+ // 向きがロックされた
+} else {
+ // 向きのロックに失敗した
+}</pre>
+
+<h2 id="Specifications" name="Specifications">仕様書</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('Screen Orientation', 'published/20140220.html#extensions-to-the-screen-interface', 'lockOrientation()')}}</td>
+ <td>{{Spec2('Screen Orientation')}}</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.lockOrientation")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{DOMxRef("Screen.orientation")}}</li>
+ <li>{{DOMxRef("Screen.unlockOrientation()")}}</li>
+ <li>{{DOMxRef("Screen.onorientationchange")}}</li>
+ <li><a href="/ja/docs/Managing_screen_orientation">画面の向きの管理</a></li>
+</ul>
diff --git a/files/ja/web/api/screen/mozbrightness/index.html b/files/ja/web/api/screen/mozbrightness/index.html
new file mode 100644
index 0000000000..5d6c476ed1
--- /dev/null
+++ b/files/ja/web/api/screen/mozbrightness/index.html
@@ -0,0 +1,30 @@
+---
+title: Screen.mozBrightness
+slug: Web/API/Screen/mozBrightness
+tags:
+ - API
+ - 'API:Mozilla Extensions'
+ - Deprecated
+ - Non-standard
+ - Property
+translation_of: Web/API/Screen/mozBrightness
+---
+<p>{{APIRef("CSSOM")}}{{Non-standard_Header}}{{Deprecated_Header}}</p>
+
+<p>画面のバックライトの明るさを、 0 (とても暗い) から 1 (完全に明るい) の範囲で示します。この値は倍精度浮動小数点数です。</p>
+
+<p>この属性は、画面が無効化されていても読み書きできますが、画面が無効化されている間はバックライトが消灯しています。この属性に X の値を書き込むと、後で読み込んだときに同じ X の値になっていない場合があります。ほとんどの画面は倍精度の 0 と 1 の数だけ輝度レベルがあるわけではありません。値を格納する前に、値の精度が低下する可能性があります。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate">let <var>screenBrightness</var> = window.screen.mozBrightness;</pre>
+
+<h2 id="Specification" name="Specification">仕様書</h2>
+
+<p>仕様書の一部ではありません。</p>
+
+<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.mozBrightness")}}</p>
diff --git a/files/ja/web/api/screen/mozenabled/index.html b/files/ja/web/api/screen/mozenabled/index.html
new file mode 100644
index 0000000000..dede4f120f
--- /dev/null
+++ b/files/ja/web/api/screen/mozenabled/index.html
@@ -0,0 +1,30 @@
+---
+title: Screen.mozEnabled
+slug: Web/API/Screen/mozEnabled
+tags:
+ - API
+ - 'API:Mozilla Extensions'
+ - DOM
+ - Deprecated
+ - Non-standard
+ - Property
+ - Reference
+translation_of: Web/API/Screen/mozEnabled
+---
+<p>{{APIRef("CSSOM")}}{{Non-standard_Header}}{{Deprecated_Header}}</p>
+
+<p>これは論理値で、端末の画面を制御します。 <code>false</code> に設定すると画面をオフにします。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate">let <var>screenEnabled</var> = window.screen.mozEnabled</pre>
+
+<h2 id="Specifications" name="Specifications">仕様書</h2>
+
+<p>仕様書の一部ではありません。</p>
+
+<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.mozEnabled")}}</p>
diff --git a/files/ja/web/api/screen/onorientationchange/index.html b/files/ja/web/api/screen/onorientationchange/index.html
new file mode 100644
index 0000000000..bc583781e0
--- /dev/null
+++ b/files/ja/web/api/screen/onorientationchange/index.html
@@ -0,0 +1,58 @@
+---
+title: Screen.onorientationchange
+slug: Web/API/Screen/onorientationchange
+tags:
+ - API
+ - CSSOM View
+ - Deprecated
+ - Event Handler
+ - Property
+ - Screen Orientation
+translation_of: Web/API/Screen/onorientationchange
+---
+<p>{{APIRef("Screen Orientation API")}}{{Deprecated_Header}}</p>
+
+<div class="blockIndicator warning">
+<p><strong>警告:</strong> これは標準外で非推奨の機能であり、 Firefox だけが異なる名前で実装されていました。代わりに {{DOMxRef("ScreenOrientation.onchange")}} を使用してください。</p>
+</div>
+
+<p>Screen オブジェクトに送信される {{domxref("Window/orientationchange_event", "orientationchange")}} イベントのイベントハンドラーです。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate">screen.onorientationchange = <var>funcRef</var>;
+</pre>
+
+<p>ここで <code>funcRef</code> は関数への参照です。</p>
+
+<h2 id="Specifications" name="Specifications">仕様書</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('Screen Orientation', 'published/20140220.html#extensions-to-the-screen-interface', 'onorientationchange')}}</td>
+ <td>{{Spec2('Screen Orientation')}}</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.onorientationchange")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{event("orientationchange")}}</li>
+ <li><a href="/ja/docs/Managing_screen_orientation">画面の向きの管理</a></li>
+</ul>
diff --git a/files/ja/web/api/screen/orientation/index.html b/files/ja/web/api/screen/orientation/index.html
new file mode 100644
index 0000000000..3bcf1c25b5
--- /dev/null
+++ b/files/ja/web/api/screen/orientation/index.html
@@ -0,0 +1,73 @@
+---
+title: Screen.orientation
+slug: Web/API/Screen/orientation
+tags:
+ - API
+ - CSSOM View
+ - Experimental
+ - Orientation
+ - Property
+ - Read-only
+ - Screen Orientation
+ - screen
+translation_of: Web/API/Screen/orientation
+---
+<div>{{APIRef("Screen Orientation API")}}{{SeeCompatTable}}</div>
+
+<p><strong><code>orientation</code></strong> は {{DOMxRef("Screen")}} インターフェイスの読み取り専用プロパティで、現在の画面の向きを返します。</p>
+
+<h2 id="構文">構文</h2>
+
+<pre class="syntaxbox">var <var>orientation</var> = window.screen.orientation;</pre>
+
+<h3 id="Return_value" name="Return_value">返値</h3>
+
+<p>画面の向きを表す {{DOMxRef("ScreenOrientation")}} のインスタンスです。</p>
+
+<p>なお、古い接頭辞付きのものは {{DOMxRef("DOMString")}} で {{DOMxRef("ScreenOrientation.type")}} と同等のものを返していました。</p>
+
+<h2 id="Example" name="Example">例</h2>
+
+<pre class="brush: js">var orientation = screen.msOrientation || screen.mozOrientation || (screen.orientation || {}).type;
+
+if (orientation === "landscape-primary") {
+ console.log("良い感じですね。");
+} else if (orientation === "landscape-secondary") {
+ console.log("うーん…。画面が上下逆です!");
+} else if (orientation === "portrait-secondary" || orientation === "portrait-primary") {
+ console.log("うーん…。スクリーンを横向きにした方がいいですよ");
+} else if (orientation === undefined) {
+ console.log("このブラウザーは orientation API に対応していません :(");
+}
+</pre>
+
+<h2 id="Specifications" name="Specifications">仕様書</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('Screen Orientation', '#dom-screen-orientation', 'orientation')}}</td>
+ <td>{{Spec2('Screen Orientation')}}</td>
+ <td>初回定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
+
+<p>{{Compat("api.Screen.orientation")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{DOMxRef("ScreenOrientation")}}</li>
+ <li>{{DOMxRef("Screen.onorientationchange")}}</li>
+ <li><a href="/ja/docs/Managing_screen_orientation">画面の向きの制御</a></li>
+</ul>
diff --git a/files/ja/web/api/screen/pixeldepth/index.html b/files/ja/web/api/screen/pixeldepth/index.html
new file mode 100644
index 0000000000..b32a3908e1
--- /dev/null
+++ b/files/ja/web/api/screen/pixeldepth/index.html
@@ -0,0 +1,60 @@
+---
+title: Screen.pixelDepth
+slug: Web/API/Screen/pixelDepth
+tags:
+ - DOM
+ - DOM_0
+ - Gecko
+ - Gecko DOM Reference
+ - screen
+translation_of: Web/API/Screen/pixelDepth
+---
+<p>{{APIRef("CSSOM")}}</p>
+
+<p>画面のビット深度を返します。CSSOM により、互換性の理由から <code>24</code> を返す実装もあります。そうでないものについては、{{anch("Browser compatibility", "ブラウザーの互換性")}}の節を参照してください。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate">let <var>depth</var> = window.screen.pixelDepth</pre>
+
+<h2 id="Example" name="Example">例</h2>
+
+<pre class="brush: js; notranslate">// if there is not adequate bit depth
+// choose a simpler color
+if ( window.screen.pixelDepth &gt; 8 ) {
+ document.style.color = "#FAEBD7";
+} else {
+ document.style.color = "#FFFFFF";
+}
+</pre>
+
+<h2 id="Specifications" name="Specifications">仕様書</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', '#dom-screen-pixeldepth', 'Screen.pixelDepth')}}</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.pixelDepth")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{DOMxRef("Screen.colorDepth")}}</li>
+</ul>
diff --git a/files/ja/web/api/screen/top/index.html b/files/ja/web/api/screen/top/index.html
new file mode 100644
index 0000000000..3246c03655
--- /dev/null
+++ b/files/ja/web/api/screen/top/index.html
@@ -0,0 +1,37 @@
+---
+title: Screen.top
+slug: Web/API/Screen/top
+tags:
+ - API
+ - 'API:Microsoft Extensions'
+ - 'API:Mozilla Extensions'
+ - 'API:WebKit Extensions'
+ - DOM
+ - Non-standard
+ - Property
+ - Window
+translation_of: Web/API/Screen/top
+---
+<p>{{APIRef("CSSOM")}}{{Non-standard_Header}}</p>
+
+<p>現在の画面の上端からの距離をピクセル単位で返します。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate">let <var>top</var> = window.screen.top;</pre>
+
+<h2 id="Specifications" name="Specifications">仕様書</h2>
+
+<p>仕様書の一部ではありません。</p>
+
+<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.left")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{DOMxRef("Screen.left")}}</li>
+</ul>
diff --git a/files/ja/web/api/screen/unlockorientation/index.html b/files/ja/web/api/screen/unlockorientation/index.html
new file mode 100644
index 0000000000..ab45c186ef
--- /dev/null
+++ b/files/ja/web/api/screen/unlockorientation/index.html
@@ -0,0 +1,74 @@
+---
+title: Screen.unlockOrientation()
+slug: Web/API/Screen/unlockOrientation
+tags:
+ - API
+ - CSSOM View
+ - Method
+ - NeedsMarkupWork
+ - Screen Orientation
+ - メソッド
+ - 画面の方向
+translation_of: Web/API/Screen/unlockOrientation
+---
+<p>{{APIRef("Screen Orientation API")}}{{Deprecated_Header}}</p>
+
+<p><strong><code>Screen.unlockOrientation()</code></strong> メソッドは、ページやアプリによって設定されているすべての画面のロックを除去します。代わりに {{DOMxRef("ScreenOrientation.unlock()")}} を使用してください。</p>
+
+<div class="note">
+<p><strong>注:</strong> このメソッドはインストールされたウェブアプリまたは<a href="/ja/docs/Web/Guide/DOM/Using_full_screen_mode">全画面モード</a>のウェブページでのみ動作します。</p>
+</div>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate">var <var>unlocked</var> = window.screen.unlockOrientation();
+</pre>
+
+<h3 id="Return_value" name="Return_value">返値</h3>
+
+<p>向きの固定の解除が成功した場合に <code>true</code> が、解除されなかった場合に <code>false</code> が返されます。</p>
+
+<h2 id="Examples" name="Examples">例</h2>
+
+<pre class="brush: js; notranslate">var unlockOrientation = screen.unlockOrientation || screen.mozUnlockOrientation || screen.msUnlockOrientation || (screen.orientation &amp;&amp; screen.orientation.unlock);
+
+if (unlockOrientation()) {
+ // 向きのロックが解除されました
+} else {
+ // 向きのロックの解除に失敗しました
+}
+</pre>
+
+<h2 id="Specifications" name="Specifications">仕様書</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('Screen Orientation', 'published/20140220.html#extensions-to-the-screen-interface', 'lockOrientation()')}}</td>
+ <td>{{Spec2('Screen Orientation')}}</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.unlockOrientation")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{DOMxRef("Screen.orientation")}}</li>
+ <li>{{DOMxRef("Screen.lockOrientation()")}}</li>
+ <li>{{DOMxRef("Screen.onorientationchange")}}</li>
+ <li><a href="/ja/docs/Managing_screen_orientation">画面の向きの制御</a></li>
+</ul>
diff --git a/files/ja/web/api/screen/width/index.html b/files/ja/web/api/screen/width/index.html
new file mode 100644
index 0000000000..9225969cba
--- /dev/null
+++ b/files/ja/web/api/screen/width/index.html
@@ -0,0 +1,57 @@
+---
+title: Screen.width
+slug: Web/API/Screen/width
+tags:
+ - API
+ - CSSOM View
+ - Property
+ - Reference
+translation_of: Web/API/Screen/width
+---
+<p>{{APIRef("CSSOM")}}</p>
+
+<p>画面の幅を返します。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate"><var>lWidth</var> = window.screen.width
+</pre>
+
+<h2 id="Example" name="Example">例</h2>
+
+<pre class="brush: js; notranslate">// Crude way to check that the screen is at least 1024x768
+if (window.screen.width &gt;= 1024 &amp;&amp; window.screen.height &gt;= 768) {
+ // Resolution is 1024x768 or above
+}
+</pre>
+
+<h2 id="Notes" name="Notes">注</h2>
+
+<p>このプロパティによって与えられた幅のすべてがウィンドウ自体に利用できるとは限らないことに注意してください。他のウィジェットが <code>window</code> オブジェクトで使用できない空間を占有している場合は、 <code>window.screen.width</code> と <code>window.screen.availWidth</code> に違いがあります。 {{DOMxRef("screen.height")}} も参照してください。</p>
+
+<p>Internet Explorer は、画面の幅を報告する際に拡大率の設定を考慮します。拡大率が 100% に設定されている場合のみ、実際の画面の幅を返します。</p>
+
+<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', '#dom-screen-height', 'Screen.height')}}</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.height")}}</p>