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
97
98
99
100
101
102
103
104
105
106
|
---
title: 'Document: gotpointercapture イベント'
slug: Web/API/Document/gotpointercapture_event
tags:
- Document
- Event
- PointerEvent
- Reference
- Web
- gotpointercapture
- イベント
- ウェブ
translation_of: Web/API/Document/gotpointercapture_event
---
<div>{{APIRef}}</div>
<p><strong><code>gotpointercapture</code></strong> イベントは、要素が {{domxref("Element.setPointerCapture", "setPointerCapture()")}} を使用してポインターをキャプチャしたときに発生します。</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/ongotpointercapture", "ongotpointercapture")}}</td>
</tr>
</tbody>
</table>
<h2 id="Examples" name="Examples">例</h2>
<p>この例は <code><p></code> 要素を取得し、 <code>gotpointercapture</code> イベントを待ち受けします。 <code>setPointerCapture()</code> を <code>pointerdown</code> イベントの要素上で呼び出し、 <code>gotpointercapture</code> を発生させます。</p>
<pre class="brush: js">const para = document.querySelector('p');
document.addEventListener('gotpointercapture', () => {
console.log('I\'ve been captured!')
});
para.addEventListener('pointerdown', (event) => {
para.setPointerCapture(event.pointerId);
});
</pre>
<p>同じ例ですが、 <code>ongotpointercapture</code> イベントハンドラーを使用して行います。</p>
<pre class="brush: js">const para = document.querySelector('p');
document.ongotpointercapture = () => {
console.log('I\'ve been captured!')
};
para.addEventListener('pointerdown', (event) => {
para.setPointerCapture(event.pointerId);
});</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-gotpointercapture-event')}}</td>
<td>{{Spec2('Pointer Events')}}</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
<p>{{Compat("api.Document.gotpointercapture_event")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>関連イベント
<ul>
<li>{{domxref("Document/lostpointercapture_event", "lostpointercapture")}}</li>
<li>{{domxref("Document/pointerover_event", "pointerover")}}</li>
<li>{{domxref("Document/pointerenter_event", "pointerenter")}}</li>
<li>{{domxref("Document/pointerdown_event", "pointerdown")}}</li>
<li>{{domxref("Document/pointermove_event", "pointermove")}}</li>
<li>{{domxref("Document/pointerup_event", "pointerup")}}</li>
<li>{{domxref("Document/pointercancel_event", "pointercancel")}}</li>
<li>{{domxref("Document/pointerout_event", "pointerout")}}</li>
<li>{{domxref("Document/pointerleave_event", "pointerleave")}}</li>
</ul>
</li>
<li>{{domxref("GlobalEventHandlers/ongotpointercapture", "ongotpointercapture")}} イベントハンドラープロパティ</li>
<li><code>HTMLElement</code> を対象としたこのイベント: {{domxref("HTMLElement/gotpointercapture_event", "gotpointercapture")}} イベント</li>
</ul>
|