From aeaef8648fcf3c8e0955b5c4fed6282f1e3f1543 Mon Sep 17 00:00:00 2001 From: atyamash Date: Sat, 12 Mar 2022 21:46:18 +0900 Subject: user_input_methods のポインターロックの日本語訳を追加 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/guide/user_input_methods/index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'files/ja/web/guide/user_input_methods') diff --git a/files/ja/web/guide/user_input_methods/index.html b/files/ja/web/guide/user_input_methods/index.html index 30989d253f..1ae4162b10 100644 --- a/files/ja/web/guide/user_input_methods/index.html +++ b/files/ja/web/guide/user_input_methods/index.html @@ -89,14 +89,14 @@ element.addEventListener("touchmove", handleMove, false);

ポインターロック

-

In some cases, typically game development, you might need to access mouse events even when the cursor goes past the boundary of the browser or screen: the {{domxref("Pointer_Lock_API")}} gives you full control of the pointing device.

+

典型的なゲーム開発では、ブラウザやスクリーンの境界を超えた時でさえもマウスイベントにアクセスすることが必要なケースがあるかもしれません。Pointer Lock API はポインティングデバイスの全ての制御を可能にします。

-

This is the code to request pointer lock on an element:

+

以下は element にポインターロックをリクエストしているコードです。

element.requestPointerLock();
-

: For a full tutorial and reference, read our {{domxref("Pointer_Lock_API")}} page.

+

: 全てのチュートリアルとリファレンスは、Pointer Lock API のページを読んでください。

画面の回転

@@ -166,8 +166,8 @@ if (elem.requestFullscreen) {
Tracking multiple touch points at a time
This example tracks multiple touch points at a time, allowing the user to draw in a {{htmlelement("canvas")}} with more than one finger at a time. It will only work on a browser that supports touch events.
-
Simple pointer lock demo
-
We've written a simple pointer lock demo to show you how to use it to set up a simple control system. The demo uses JavaScript to draw a ball inside a {{htmlelement("canvas")}} element. When you click the canvas, pointer lock is then used to remove the mouse pointer and allow you to move the ball directly using the mouse.
+
シンプルなポインターロックデモ
+
シンプルなコントロールシステムをセットアップするためのポインターロックの使い方を紹介するために、シンプルなポインターロックデモを記載しています。このデモでは {{htmlelement("canvas")}} 要素の中にボールを描くために JavaScript を使っています。canvas をクリックすると、ポインターロックはその後、マウスポインターの除去と直接マウスを使ってボールを移動させるために利用されます。
コンテンツを編集可能にするデモ
このデモは、編集可能なドキュメントセクションを作成することに利用できる contenteditable がどのように動くか表示しており、その状態はその後 ローカルストレージを使い保存されます。
-- cgit v1.2.3-54-g00ecf