From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/api/devicemotionevent/index.html | 82 +++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 files/ja/web/api/devicemotionevent/index.html (limited to 'files/ja/web/api/devicemotionevent') diff --git a/files/ja/web/api/devicemotionevent/index.html b/files/ja/web/api/devicemotionevent/index.html new file mode 100644 index 0000000000..100a28a4e9 --- /dev/null +++ b/files/ja/web/api/devicemotionevent/index.html @@ -0,0 +1,82 @@ +--- +title: DeviceMotionEvent +slug: Web/API/DeviceMotionEvent +tags: + - API + - Device Orientation + - Experimental + - Mobile + - Motion + - Orientation +translation_of: Web/API/DeviceMotionEvent +--- +

{{apiref("Device Orientation Events")}}{{SeeCompatTable}}

+ +

サマリー

+ +

DeviceMotionEvent はウェブ開発者にデバイスの位置と向きの変更スピードの情報を提供します。

+ +
+

警告: 現在、Firefox と Chrome は同じ方法で座標を処理しません。これらを使用する際は、注意してください。

+
+ +

コンストラクター

+ +
+
{{domxref("DeviceMotionEvent.DeviceMotionEvent","DeviceMotionEvent.DeviceMotionEvent()")}}
+
新しい DeviceMotionEvent を生成します。
+
+ +

プロパティ

+ +
+
{{domxref("DeviceMotionEvent.acceleration")}} {{readonlyinline}}
+
3 つの軸 X、Y、Z 上のデバイスの加速度を与えるオブジェクトです。加速度は m/s2 で表されます。
+
{{domxref("DeviceMotionEvent.accelerationIncludingGravity")}} {{readonlyinline}}
+
X、Y、Z 上のデバイスの加速度を重力度込みで与えるオブジェクトです。加速度は m/s2 で表されます。
+
{{domxref("DeviceMotionEvent.rotationRate")}} {{readonlyinline}}
+
3つの方向軸アルファ、ベータ、ガンマ上のデバイスの向きの変化率を与えるオブジェクトです。回転速度は 1 秒あたりの度数で表されます。
+
{{domxref("DeviceMotionEvent.interval")}} {{readonlyinline}}
+
デバイスからデータを取得する間隔(ミリ秒)を表す数値です。
+
+ +

+ +
window.addEventListener('devicemotion', function(event) {
+  console.log(event.acceleration.x + ' m/s2');
+});
+ +

仕様

+ + + + + + + + + + + + + + + + +
仕様ステータスコメント
{{SpecName('Device Orientation')}}{{Spec2('Device Orientation')}}初期定義。
+ +

ブラウザー実装状況

+ + + +

{{Compat("api.DeviceMotionEvent")}}

+ +

関連項目

+ + -- cgit v1.2.3-54-g00ecf