aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/htmlelement/pointermove_event/index.html
blob: cb62aadf73772624288f05125ca6c7f1443686a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
---
title: 'HTMLElement: pointermove イベント'
slug: Web/API/HTMLElement/pointermove_event
tags:
  - Event
  - HTML DOM
  - HTMLElement
  - PointerEvent
  - Reference
translation_of: Web/API/HTMLElement/pointermove_event
---
<div>{{APIRef}}</div>

<p><code>pointermove</code> イベントは、ポインターの座標が変更され、ブラウザーの <a href="/ja/docs/Web/CSS/touch-action">touch-action</a> によってポインターが<a href="/ja/docs/Web/Events/pointercancel">キャンセルされて</a>いない場合に発生します。</p>

<table class="properties">
 <tbody>
  <tr>
   <th scope="row">バブリング</th>
   <td>あり</td>
  </tr>
  <tr>
   <th scope="row">キャンセル</th>
   <td></td>
  </tr>
  <tr>
   <th scope="row">インターフェイス</th>
   <td>{{domxref("PointerEvent")}}</td>
  </tr>
  <tr>
   <th scope="row">イベントハンドラープロパティ</th>
   <td>{{domxref("GlobalEventHandlers/onpointermove", "onpointermove")}}</td>
  </tr>
 </tbody>
</table>

<h2 id="Usage_notes" name="Usage_notes">使用上の注意</h2>

<p>{{domxref("PointerEvent")}} 型のイベントは、ポインティングデバイスによるユーザーの対話に必要なすべての情報を提供します。位置、移動距離、ボタンの状態などです。</p>

<h2 id="Examples" name="Examples"></h2>

<p><code>pointermove</code> イベントのハンドラーを {{domxref("EventTarget.addEventListener", "addEventListener()")}} で追加する場合です。</p>

<pre class="brush: js notranslate">const para = document.querySelector('p');

para.addEventListener('pointermove', (event) =&gt; {
  console.log('ポインターが移動しました');
});</pre>

<p><code>onpointermove</code> イベントハンドラープロパティを使用することもできます。</p>

<pre class="brush: js notranslate">const para = document.querySelector('p');

para.onpointermove = (event) =&gt; {
  console.log('ポインターが移動しました');
};</pre>

<h2 id="Specifications" name="Specifications">仕様書</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">状態</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('Pointer Events', '#the-pointermove-event')}}</td>
   <td>{{Spec2('Pointer Events')}}</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

<p>{{Compat("api.HTMLElement.pointermove_event")}}</p>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li><code><a href="/ja/docs/Web/API/HTMLElement/gotpointercapture_event">gotpointercapture</a></code></li>
 <li><code><a href="/ja/docs/Web/API/HTMLElement/lostpointercapture_event">lostpointercapture</a></code></li>
 <li><code><a href="/ja/docs/Web/API/HTMLElement/pointerover_event">pointerover</a></code></li>
 <li><code><a href="/ja/docs/Web/API/HTMLElement/pointerenter_event">pointerenter</a></code></li>
 <li><code><a href="/ja/docs/Web/API/HTMLElement/pointerdown_event">pointerdown</a></code></li>
 <li><code><a href="/ja/docs/Web/API/HTMLElement/pointerup_event">pointerup</a></code></li>
 <li><code><a href="/ja/docs/Web/API/HTMLElement/pointercancel_event">pointercancel</a></code></li>
 <li><code><a href="/ja/docs/Web/API/HTMLElement/pointerout_event">pointerout</a></code></li>
 <li><code><a href="/ja/docs/Web/API/HTMLElement/pointerleave_event">pointerleave</a></code></li>
 <li><code><a href="/ja/docs/Web/API/GlobalEventHandlers/onpointermove">onpointermove</a></code> イベントハンドラプロパティ</li>
 <li><code>Document</code> でのこのイベント: <code><a href="/ja/docs/Web/API/Document/pointermove_event">pointermove</a></code> イベント</li>
</ul>

<p>Internet Explorer は、<code>MSPointerHover</code> という名前のイベントもサポートしていました。 これは、接触(通常はペン)が表面に触れずに要素上を移動したときに発生します。 この独自の方法は Internet Explorer に固有のものであり、Internet Explorer 11 以降、推奨されなくなりました。 IE11 以降では、<code><a href="/ja/docs/Web/API/HTMLElement/pointermove_event">pointermove</a></code> イベントがすべてのペンの動きに対して発生します(ホバーしているかどうかにかかわらず)。</p>