aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/gamepadevent/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/gamepadevent/index.html')
-rw-r--r--files/ja/web/api/gamepadevent/index.html70
1 files changed, 70 insertions, 0 deletions
diff --git a/files/ja/web/api/gamepadevent/index.html b/files/ja/web/api/gamepadevent/index.html
new file mode 100644
index 0000000000..7b53c17c45
--- /dev/null
+++ b/files/ja/web/api/gamepadevent/index.html
@@ -0,0 +1,70 @@
+---
+title: GamepadEvent
+slug: Web/API/GamepadEvent
+tags:
+ - API
+ - Gamepad API
+ - Games
+ - Interface
+ - Reference
+translation_of: Web/API/GamepadEvent
+---
+<p>{{APIRef("Gamepad API")}}</p>
+
+<p>Gamepad API の GamepadEvent インターフェースは、<span class="tlid-translation translation"><span title="">システムに接続されているゲームパッドへの参照が含まれています。これは、ゲームパッドイベント </span></span>{{domxref("Window.gamepadconnected")}} <span class="tlid-translation translation"><span title=""> と </span></span>{{domxref("Window.gamepaddisconnected")}}<span class="tlid-translation translation"><span title=""> が応答して発生するものです。</span></span></p>
+
+<h2 id="コンストラクタ">コンストラクタ</h2>
+
+<dl>
+ <dt>{{domxref("GamepadEvent.GamepadEvent","GamepadEvent()")}}</dt>
+ <dd>新しい <code>GamepadEvent</code> オブジェクトを返します。</dd>
+</dl>
+
+<h2 id="プロパティ">プロパティ</h2>
+
+<dl>
+ <dt>{{ domxref("GamepadEvent.gamepad") }} {{readonlyInline}}</dt>
+ <dd><span class="tlid-translation translation"><span title="">発生したイベントの関連するゲームパッドデータへのアクセスを提供する </span></span>{{ domxref("Gamepad") }}<span class="tlid-translation translation"><span title=""> オブジェクトを返します。</span></span></dd>
+</dl>
+
+<h2 id="例">例</h2>
+
+<p><span class="tlid-translation translation"><span title="">ゲームパッドプロパティは、起動された </span></span>{{domxref("Window.gamepadconnected")}}<span class="tlid-translation translation"><span title=""> イベントで呼び出されます。</span></span></p>
+
+<pre class="brush: js">window.addEventListener("gamepadconnected", function(e) {
+ console.log("Gamepad connected at index %d: %s. %d buttons, %d axes.",
+ e.gamepad.index, e.gamepad.id,
+ e.gamepad.buttons.length, e.gamepad.axes.length);
+});</pre>
+
+<p>また {{domxref("Window.gamepaddisconnected")}} イベントでも呼び出されます。</p>
+
+<pre class="brush: js">window.addEventListener("gamepaddisconnected", function(e) {
+ console.log("Gamepad disconnected from index %d: %s",
+ e.gamepad.index, e.gamepad.id);
+});</pre>
+
+<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("Gamepad", "#gamepadevent-interface", "GamepadEvent")}}</td>
+ <td>{{Spec2("Gamepad")}}</td>
+ <td>初版</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザの互換性</h2>
+
+<p>{{Compat("api.GamepadEvent")}}</p>
+
+<h2 id="参照">参照</h2>
+
+<p><a href="/docs/Web/Guide/API/Gamepad">Gamepad API の利用</a></p>