diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/touch/clientx | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/touch/clientx')
-rw-r--r-- | files/ja/web/api/touch/clientx/index.html | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/files/ja/web/api/touch/clientx/index.html b/files/ja/web/api/touch/clientx/index.html new file mode 100644 index 0000000000..13faf6fea0 --- /dev/null +++ b/files/ja/web/api/touch/clientx/index.html @@ -0,0 +1,81 @@ +--- +title: Touch.clientX +slug: Web/API/Touch/clientX +tags: + - API + - DOM + - Property + - Read-only + - Reference + - touch +translation_of: Web/API/Touch/clientX +--- +<p>{{ APIRef("Touch Events") }}</p> + +<p><strong><code>Touch.clientY</code></strong> は読み取り専用プロパティで、タッチ点のビューポートからのスクロールオフセットは含まない相対 Y 座標を返します。</p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="syntaxbox notranslate"><var>touchItem</var>.clientY;</pre> + +<h3 id="Return_value" name="Return_value">返値</h3> + +<p><code>long</code> 値で、タッチ点のビューポートからのスクロールオフセットは含まない相対 Y 座標を表します。</p> + +<h2 id="Example" name="Example">例</h2> + +<p>この例では、 {{domxref("Touch")}} オブジェクトの {{domxref("Touch.clientX")}} および {{domxref("Touch.clientY")}} プロパティを使用しています。 {{domxref("Touch.clientX")}} プロパティは、ブラウザーのビューポートを基準としたタッチ点の水平座標で、スクロールオフセットを除きます。 {{domxref("Touch.clientY")}} プロパティは、ブラウザーのビューポートを基準としたタッチポイントの垂直座標で、スクロールオフセットを除きます。</p> + +<p>この例では、 <code>source</code> という id の要素にタッチを開始し、要素内または要素外に移動した後、タッチ面から指を離したと仮定します。 {{domxref("Element/touchend_event", "touchend")}} のイベントハンドラーが呼び出されると、タッチ開始点から終了点までの {{domxref("Touch.clientX")}} 座標と {{domxref("Touch.clientY")}} 座標の変化が計算されます。</p> + +<pre class="brush: js notranslate">// Register touchstart and touchend listeners for element 'source' +var src = document.getElementById("source"); +var clientX, clientY; + +src.addEventListener('touchstart', function(e) { + // Cache the client X/Y coordinates + clientX = e.touches[0].clientX; + clientY = e.touches[0].clientY; +}, false); + +src.addEventListener('touchend', function(e) { + var deltaX, deltaY; + + // Compute the change in X and Y coordinates. + // The first touch point in the changedTouches + // list is the touch point that was just removed from the surface. + deltaX = e.changedTouches[0].clientX - clientX; + deltaY = e.changedTouches[0].clientY - clientY; + + // Process the data ... +}, false);</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('Touch Events 2','#dom-touch-clienty')}}</td> + <td>{{Spec2('Touch Events 2')}}</td> + <td>前の版から変更なし。</td> + </tr> + <tr> + <td>{{SpecName('Touch Events', '#widl-Touch-clientY')}}</td> + <td>{{Spec2('Touch Events')}}</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.Touch.clientY")}}</p> |