blob: 31b3c2e265741c2cb160e0980333827783a7ed76 (
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
|
---
title: PointerEvent.tangentialPressure
slug: Web/API/PointerEvent/tangentialPressure
tags:
- API
- DOM
- Pointer Events
- PointerEvent
- Property
- Reference
- tangentialPressure
translation_of: Web/API/PointerEvent/tangentialPressure
---
<div>{{ APIRef("Pointer Events") }}</div>
<p><span class="seoSummary">{{domxref("PointerEvent")}} インターフェイスの <strong><code>tangentialPressure</code></strong> 読み取り専用プロパティは、ポインタ入力の正規化された接線方向の圧力(バレル圧力またはシリンダー応力(<a href="https://en.wikipedia.org/wiki/Cylinder_stress">cylinder stress</a>)とも呼ばれます)を表します。</span></p>
<p>(訳注:エアブラシスタイラスのホイールのようなものを想定しています。)</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox">var <em>tanPressure</em> = <em>pointerEvent</em>.tangentialPressure;
</pre>
<h3 id="Return_value" name="Return_value">戻り値</h3>
<p>ポインタ入力の正規化された接線方向の圧力を表す <code>-1</code> から <code>1</code> の範囲の <code>float</code> 型。ここで、<code>0</code> はコントロールの中立位置です。</p>
<p>ハードウェアによっては、<code>0</code> から <code>1</code> の範囲の正の値しかサポートしない場合があることに注意してください。 接線方向の圧力をサポートしないハードウェアの場合、値は <code>0</code> になります。</p>
<h2 id="Example" name="Example">例</h2>
<p>このスニペットでは、{{event("pointerdown")}} イベントが発生すると、イベントの <code>tangentialPressure</code> プロパティの値に応じてさまざまな関数が呼び出されます。</p>
<pre class="brush: js">someElement.addEventListener('pointerdown', function(event) {
if (event.tangentialPressure == 0) {
// 圧力なし
process_no_tanPressure(event);
} else if (event.tangentialPressure == 1) {
// 最大圧力
process_max_tanPressure(event);
} else {
// デフォルト
process_tanPressure(event);
}
}, false);
</pre>
<h2 id="Specifications" name="Specifications">仕様</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">仕様</th>
<th scope="col">状態</th>
<th scope="col">コメント</th>
</tr>
<tr>
<td>{{SpecName('Pointer Events 2','#dom-pointerevent-tangentialpressure', 'tangentialPressure')}}</td>
<td>{{Spec2('Pointer Events 2')}}</td>
<td></td>
</tr>
</tbody>
</table>
<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.tangentialPressure")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{ domxref("Touch.force") }}</li>
</ul>
|