diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/gamepad/hapticactuators | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/gamepad/hapticactuators')
-rw-r--r-- | files/ja/web/api/gamepad/hapticactuators/index.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/files/ja/web/api/gamepad/hapticactuators/index.html b/files/ja/web/api/gamepad/hapticactuators/index.html new file mode 100644 index 0000000000..f02b29bb70 --- /dev/null +++ b/files/ja/web/api/gamepad/hapticactuators/index.html @@ -0,0 +1,55 @@ +--- +title: Gamepad.hapticActuators +slug: Web/API/Gamepad/hapticActuators +tags: + - API + - Experimental + - Gamepad + - Gamepad API + - Property + - Reference + - hapticActuators +translation_of: Web/API/Gamepad/hapticActuators +--- +<div>{{APIRef("Gamepad")}}{{SeeCompatTable}}</div> + +<p>{{domxref("Gamepad")}} インターフェイスの <strong><code>hapticActuators</code></strong> 読み取り専用プロパティは、 {{domxref("GamepadHapticActuator")}} オブジェクトを含む配列を返します。各オブジェクトは、コントローラーで利用可能な触覚フィードバックハードウェアを表します。</p> + +<h2 id="構文">構文</h2> + +<pre class="brush: js notranslate">var myHapticActuators = gamepadInstance.hapticActuators;</pre> + +<h3 id="値">値</h3> + +<p>{{domxref("GamepadHapticActuator")}} オブジェクトを含む配列。</p> + +<h2 id="例">例</h2> + +<p>TBC</p> + +<h2 id="仕様">仕様</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">仕様</th> + <th scope="col">ステータス</th> + <th scope="col">備考</th> + </tr> + <tr> + <td>{{SpecName('GamepadExtensions', '#partial-gamepad-interface', 'hapticActuators')}}</td> + <td>{{Spec2('GamepadExtensions')}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="ブラウザー実装状況">ブラウザー実装状況</h2> + +<p>{{Compat("api.Gamepad.hapticActuators")}}</p> + +<h2 id="関連項目">関連項目</h2> + +<ul> + <li><a href="/en-US/docs/Web/API/Gamepad_API">Gamepad API</a></li> +</ul> |