blob: 85966cb944e11942209433d0fb836b2256643256 (
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
|
---
title: Navigator.maxTouchPoints
slug: Web/API/Navigator/maxTouchPoints
tags:
- API
- DOM
- Navigator
- Property
- Reference
- maxTouchPoints
- ポインターイベント
translation_of: Web/API/Navigator/maxTouchPoints
---
<div>{{APIRef("HTML DOM")}}</div>
<p>{{domxref("Navigator")}} インターフェイスの <strong><code>maxTouchPoints</code></strong> プロパティは読み取り専用で、現在の端末で対応している同時タッチコンタクト点の最大数を返します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox"><var>touchPoints</var> = <var>navigator</var>.maxTouchPoints;
</pre>
<h2 id="Example" name="Example">例</h2>
<pre class="brush: js">if (navigator.maxTouchPoints > 1) {
// ブラウザーがマルチタッチに対応
}
</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('Pointer Events 2','#extensions-to-the-navigator-interface', 'maxTouchPoints')}}</td>
<td>{{Spec2('Pointer Events 2')}}</td>
<td>非安定バージョン。</td>
</tr>
<tr>
<td>{{SpecName('Pointer Events', '#extensions-to-the-navigator-interface', 'maxTouchPoints')}}</td>
<td>{{Spec2('Pointer Events')}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
<div>{{Compat("api.Navigator.maxTouchPoints")}}</div>
|