aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authoratyamash <atyamash@yahoo-corp.jp>2022-03-12 17:27:17 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2022-03-19 11:49:38 +0900
commit3fa6f03fe7b6a20e16ce7bcbf51279066a5c64ea (patch)
treeeaed9c3e3349fa086c7c3c5f3d61c5c68e324af5 /files
parent9bf6693b2edd5281c1577856895c55653a41dc01 (diff)
downloadtranslated-content-3fa6f03fe7b6a20e16ce7bcbf51279066a5c64ea.tar.gz
translated-content-3fa6f03fe7b6a20e16ce7bcbf51279066a5c64ea.tar.bz2
translated-content-3fa6f03fe7b6a20e16ce7bcbf51279066a5c64ea.zip
user_input_methods のポインターイベントの日本語訳を追加
Diffstat (limited to 'files')
-rw-r--r--files/ja/web/guide/user_input_methods/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ja/web/guide/user_input_methods/index.html b/files/ja/web/guide/user_input_methods/index.html
index 1ae4162b10..46326193b5 100644
--- a/files/ja/web/guide/user_input_methods/index.html
+++ b/files/ja/web/guide/user_input_methods/index.html
@@ -79,10 +79,10 @@ element.addEventListener("touchmove", handleMove, false);</pre>
<h4 id="Pointer_Events" name="Pointer_Events">ポインターイベント</h4>
-<p>When dealing with devices that incorporate multiple forms of input, like mouse, finger touch and pen input, it might be hard to develop a solution that works for all these different control mechanisms. <a href="http://www.w3.org/TR/pointerevents/">Pointer Events</a> help developers more easily manage events across devices by normalizing the handling of each one. A pointer can be any point of contact on the screen made by a mouse cursor, pen, touch (including multi-touch), or other pointing input device. The events for handling generic pointer input look a lot like those for mouse: <code>pointerdown</code>, <code>pointermove</code>, <code>pointerup</code>, <code>pointerover</code>, <code>pointerout</code>, etc.</p>
+<p>マウス、指でのタッチ、ペン入力など複数の入力形式が内蔵されているデバイスを扱う時、全てのこれら異なる制御の仕組みを機能させるソリューションを開発することは難しいかもしれません。<a href="http://www.w3.org/TR/pointerevents/">Pointer Events</a> は、デバイス毎の扱いを標準化することにより、開発者がデバイスを横断してイベントを管理することをより簡単にするのに役立ちます。マウスカーソル、ペン、タッチ(マルチタッチを含む)、またはその他のポインティング入力デバイスによって、ポインターはスクリーン上のあらゆる接点となることができます。汎用的なポインター入力を扱うためのイベントは、<code>pointerdown</code>、<code>pointermove</code>、<code>pointerup</code>、<code>pointerover</code>、<code>pointerout</code> などのマウス用のイベントとよく似ています。</p>
<div class="note">
-<p><strong>注</strong>: Pointer Events are not widely supported yet, but a <a href="https://github.com/mozilla/pointer.js">pointer.js polyfill</a> is available on Mozilla Github.</p>
+<p><strong>注</strong>: Pointer Events はまだ広くサポートされていませんが、<a href="https://github.com/mozilla/pointer.js">pointer.js polyfill</a> は Mozilla Github で利用可能です。</p>
</div>
<h3 id="Implement_controls" name="Implement_controls">コントロールの実装</h3>