diff options
Diffstat (limited to 'files/ja/web/api/screen/availtop/index.html')
-rw-r--r-- | files/ja/web/api/screen/availtop/index.html | 38 |
1 files changed, 38 insertions, 0 deletions
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> |