blob: 78e10d6d34411fcb35e64928a2c5a37a25f599f7 (
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
|
---
title: PointerEvent.PointerEvent()
slug: Web/API/PointerEvent/PointerEvent
tags:
- API
- Constructor
- PointerEvent
- Reference
translation_of: Web/API/PointerEvent/PointerEvent
---
<p>{{APIRef("Pointer Events")}}</p>
<p><span class="seoSummary"><strong><code>PointerEvent()</code></strong> コンストラクタは、新しい信頼できない合成 {{domxref("PointerEvent")}} オブジェクトのインスタンスを作成します。</span></p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox"> <em>event</em> = new PointerEvent(<em>type</em>, <em>PointerEventInit</em>);</pre>
<h3 id="Arguments" name="Arguments">引数</h3>
<dl>
<dt><em>type</em></dt>
<dd>イベントの名前を表す {{domxref("DOMString")}} です(<a href="/Web/API/PointerEvent#Pointer_event_types"><code>PointerEvent</code> のイベントタイプ</a>を参照)。</dd>
<dt><em>PointerEventInit</em>{{optional_inline}}</dt>
</dl>
<dl>
<dd>次のフィールドを持つ <code>PointerEventInit</code> ディクショナリです。
<ul>
<li><code>pointerId</code> — インスタンスの {{domxref("PointerEvent.pointerId")}} の値を設定する <code>long</code> 型のオプションで、デフォルトは <code>0</code> です。</li>
<li><code>width</code> — インスタンスの {{domxref("PointerEvent.width")}} の値を設定する <code>double</code> 型のオプションで、デフォルトは <code>1</code> です。</li>
<li><code>height</code> — インスタンスの {{domxref("PointerEvent.height")}} の値を設定する <code>double</code> 型のオプションで、デフォルトは <code>1</code> です。</li>
<li><code>pressure</code> — インスタンスの {{domxref("PointerEvent.pressure")}} の値を設定する <code>float</code> 型のオプションで、デフォルトは <code>0</code> です。</li>
<li><code>tangentialPressure</code> — インスタンスの {{domxref("PointerEvent.tangentialPressure")}} の値を設定する <code>float</code> 型のオプションで、デフォルトは <code>0</code> です。</li>
<li><code>tiltX</code> — インスタンスの {{domxref("PointerEvent.tiltX")}} の値を設定する <code>long</code> 型のオプションで、デフォルトは <code>0</code> です。</li>
<li><code>tiltY</code> — インスタンスの {{domxref("PointerEvent.tiltY")}} の値を設定する <code>long</code> 型のオプションで、デフォルトは <code>0</code> です。</li>
<li><code>twist</code> — インスタンスの {{domxref("PointerEvent.twist")}} の値を設定する <code>long</code> 型のオプションで、デフォルトは <code>0</code> です。</li>
<li><code>pointerType</code> — インスタンスの {{domxref("PointerEvent.pointerType")}} の値を設定する {{domxref("DOMString")}} 型のオプションで、デフォルトは <code>""</code> です。</li>
<li><code>isPrimary</code> — インスタンスの {{domxref("PointerEvent.isPrimary")}} の値を設定する {{jsxref("Boolean")}} 型のオプションで、デフォルトは <code>false</code> です。</li>
</ul>
<div class="note">
<p><strong>注</strong>: <code>PointerEventInit</code> ディクショナリは、{{domxref("MouseEvent.MouseEvent","MouseEvent")}}、{{domxref("UIEvent.UIEvent", "UIEventInit")}}、および {{domxref("Event.Event", "EventInit")}} ディクショナリからのフィールドも受け入れます。</p>
</div>
</dd>
</dl>
<h2 id="Example" name="Example">例</h2>
<pre class="brush: js">var moveEvent = new PointerEvent("pointermove");
var downEvent = new PointerEvent("pointerdown",
{pointerId: 1,
bubbles: true,
cancelable: true,
pointerType: "touch",
width: 100,
height: 100,
isPrimary: true
});
</pre>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<div class="hidden">
<p>The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
</div>
<p>{{Compat("api.PointerEvent.PointerEvent")}}</p>
|