aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/window/mozinnerscreenx
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/window/mozinnerscreenx
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/window/mozinnerscreenx')
-rw-r--r--files/ja/web/api/window/mozinnerscreenx/index.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/files/ja/web/api/window/mozinnerscreenx/index.html b/files/ja/web/api/window/mozinnerscreenx/index.html
new file mode 100644
index 0000000000..c2499e3247
--- /dev/null
+++ b/files/ja/web/api/window/mozinnerscreenx/index.html
@@ -0,0 +1,31 @@
+---
+title: window.mozInnerScreenX
+slug: Web/API/Window/mozInnerScreenX
+tags:
+ - DOM
+ - Gecko
+ - Gecko DOM Reference
+ - Window
+translation_of: Web/API/Window/mozInnerScreenX
+---
+<div>
+ {{ApiRef}} {{gecko_minversion_header("1.9.2")}}</div>
+<h2 id="Summary" name="Summary">概要</h2>
+
+<p>ウィンドウのビューポートの左上隅の<em>スクリーン上の</em> X 座標を取得します。</p>
+<div class="note">
+ <strong>注記:</strong> この座標はハードウェアピクセルではなく、CSS のピクセル単位で報告されます。つまり、ズームレベルによる影響を受けるということです。実際の物理的な画面のピクセル数を計算するには、 <a href="/ja/docs/XPCOM_Interface_Reference/nsIDOMWindowUtils"><code>nsIDOMWindowUtils.screenPixelsPerCSSPixel</code></a> プロパティを使用する必要があります。</div>
+<h2 id="Syntax" name="Syntax">構文</h2>
+<pre class="syntaxbox"><var>screenX</var> = window.mozInnerScreenX;</pre>
+<h3 id="Value" name="Value">値</h3>
+<ul>
+ <li><var>screenX</var> : <code>window.mozInnerScreenX</code> プロパティの値となる</li>
+ <li><var>window.mozInnerScreenX</var> : 浮動小数点数値。デフォルト値無し {{readonlyInline}}</li>
+</ul>
+<h2 id="Specification" name="Specification">仕様書</h2>
+<p><abbr title="World Wide Web Consortium">W3C</abbr> の技術仕様書や勧告に含まれるものではありません。</p>
+<h2 id="See_also" name="See_also">関連情報</h2>
+<ul>
+ <li>{{domxref("window.mozInnerScreenY")}}</li>
+ <li><a href="/ja/docs/XPCOM_Interface_Reference/nsIDOMWindowUtils"><code>nsIDOMWindowUtils.screenPixelsPerCSSPixel</code></a></li>
+</ul>