aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/deviceacceleration
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/deviceacceleration
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/deviceacceleration')
-rw-r--r--files/ja/web/api/deviceacceleration/index.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/files/ja/web/api/deviceacceleration/index.html b/files/ja/web/api/deviceacceleration/index.html
new file mode 100644
index 0000000000..7c9af279af
--- /dev/null
+++ b/files/ja/web/api/deviceacceleration/index.html
@@ -0,0 +1,46 @@
+---
+title: DeviceAcceleration
+slug: Web/API/DeviceAcceleration
+tags:
+ - API
+ - Device
+ - Experimental
+ - Interface
+ - Orienttation
+ - Reference
+ - events
+translation_of: Web/API/DeviceMotionEventAcceleration
+---
+<div>{{ ApiRef("Device Orientation Events") }}{{SeeCompatTable}}</div>
+
+<p><code>DeviceAcceleration</code>オブジェクトは、3つの軸に沿って発生しているデバイスの加速度についての情報を提供します。</p>
+
+<h2 id="プロパティ">プロパティ</h2>
+
+<dl>
+ <dt>{{domxref("DeviceAcceleration.x")}} {{readonlyInline}}</dt>
+ <dd>X軸に沿った加速度の大きさ。<strong>読み取り専用。</strong></dd>
+ <dt>{{domxref("DeviceAcceleration.y")}} {{readonlyInline}}</dt>
+ <dd>Y軸に沿った加速度の大きさ。<strong>読み取り専用。</strong></dd>
+ <dt>{{domxref("DeviceAcceleration.z")}} {{readonlyInline}}</dt>
+ <dd> Z軸に沿った加速度の大きさ。<strong>読み取り専用。</strong></dd>
+</dl>
+
+<h2 id="Specifications" name="Specifications">仕様</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Specification</th>
+ <th scope="col">Status</th>
+ <th scope="col">Comment</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName("Device Orientation", "#device_acceleration", "DeviceAcceleration")}}</td>
+ <td>{{Spec2("Device Orientation")}}</td>
+ <td>Initial definition</td>
+ </tr>
+ </tbody>
+</table>