blob: faa466573e0f2dec1c03e252bc6be06f3fc7eb22 (
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
|
---
title: TouchList
slug: Web/API/TouchList
tags:
- API
- DOM
- DOM Reference
- Mobile
- Reference
- Touch Event
- TouchList
- touch
translation_of: Web/API/TouchList
---
<p>{{APIRef("Touch Events")}}</p>
<p><strong><code>TouchList</code></strong> インターフェイスは、タッチ面上の接触点のリストを表します。例えば、ユーザーがタッチ面 (画面やトラックパッドなど) を 3 本指で操作している場合、対応する <code>TouchList</code> オブジェクトは 1 本の指あたり 1 つの {{domxref("Touch")}} オブジェクトを持ち、全部で 3 要素になります。</p>
<h2 id="Properties" name="Properties">プロパティ</h2>
<dl>
<dt>{{domxref("TouchList.length")}} {{readonlyInline}}</dt>
<dd><code>TouchList</code> 中の {{domxref("Touch")}} オブジェクトの個数</dd>
</dl>
<h2 id="Methods" name="Methods">メソッド</h2>
<dl>
<dt>{{domxref("TouchList.identifiedTouch()")}}</dt>
<dd>識別子が指定された値と一致するリスト内の、最初の {{domxref("Touch")}} 要素を返す</dd>
<dt>{{domxref("TouchList.item()")}}</dt>
<dd>リスト内の指定した位置の {{domxref("Touch")}} オブジェクトを返します。</dd>
</dl>
<h2 id="Example" name="Example">例</h2>
<p><a href="/ja/docs/Web/API/Touch_events#Example">タッチイベントのメイン記事にある例</a>をご覧ください。</p>
<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('Touch Events 2','#touchlist-interface')}}</td>
<td>{{Spec2('Touch Events 2')}}</td>
<td>Non-stable version.</td>
</tr>
<tr>
<td>{{SpecName('Touch Events', '#touchlist-interface')}}</td>
<td>{{Spec2('Touch Events')}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.TouchList")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li><a href="/ja/docs/Web/API/Touch_events">タッチイベント</a></li>
<li>{{domxref("Document.createTouchList()")}}</li>
</ul>
|