blob: 41cda848dfcc6f52e59f9ef31418a9ec67e3e395 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
---
title: Window.ondevicemotion
slug: Web/API/Window/ondevicemotion
tags:
- API
- Device Orientation
- Firefox OS
- Mobile
- Motion
- 移动端设备
translation_of: Web/API/Window/ondevicemotion
---
<p>{{ ApiRef() }}</p>
<h2 id="Summary" name="Summary">摘要</h2>
<p>一个发送到窗口的{{ event("devicemotion")}}事件处理程序。</p>
<h2 id="Syntax" name="Syntax">语法</h2>
<pre>window.ondevicemotion = funcRef;
</pre>
<p>Where <code>funcRef</code> is a reference to a function. This function receives a {{ domxref("DeviceMotionEvent") }} object describing the motion that occurred.</p>
<p>这里的<code>funcRef</code>是一个函数的引用。这个函数接收一个{{ domxref("DeviceMotionEvent") }} 对象类型的参数描述发生的动作。</p>
<h2 id="规范">规范</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">规范</th>
<th scope="col">状态</th>
<th scope="col">备注</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('Device Orientation')}}</td>
<td>{{Spec2('Device Orientation')}}</td>
<td>Initial specification.</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容">浏览器兼容</h2>
<p>{{ page("/en-US/docs/Web/API/DeviceMotionEvent","Browser_compatibility") }}</p>
<h2 id="参考">参考</h2>
<ul>
<li>{{ event("devicemotion") }}</li>
<li>{{ domxref("DeviceMotionEvent") }}</li>
<li><a href="/en/Detecting_device_orientation" title="Detecting device orientation">Detecting device orientation</a></li>
</ul>
|