diff options
Diffstat (limited to 'files/zh-cn/conflicting/web/api')
-rw-r--r-- | files/zh-cn/conflicting/web/api/window/deviceorientation_event/index.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/files/zh-cn/conflicting/web/api/window/deviceorientation_event/index.html b/files/zh-cn/conflicting/web/api/window/deviceorientation_event/index.html new file mode 100644 index 0000000000..7c74434f69 --- /dev/null +++ b/files/zh-cn/conflicting/web/api/window/deviceorientation_event/index.html @@ -0,0 +1,48 @@ +--- +title: Window.ondeviceorientation +slug: conflicting/Web/API/Window/deviceorientation_event +translation_of: Web/API/Window/ondeviceorientation +original_slug: Web/API/Window/ondeviceorientation +--- +<p>{{ ApiRef() }}</p> + +<h2 id="Summary" name="Summary">简介</h2> + +<p>{{ event("deviceorientation") }}事件的事件处理程序,该事件包含了设备的相对旋转方向改变信息。</p> + +<h2 id="Syntax" name="Syntax">语法</h2> + +<pre class="syntaxbox">window.ondeviceorientation = function(event) { ... }; +window.addEventListener('deviceorientation', function(event) { ... }); +</pre> + +<h2 id="规范">规范</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')}}</td> + <td>{{Spec2('Device Orientation')}}</td> + <td>Initial specification.</td> + </tr> + </tbody> +</table> + +<h2 id="浏览器兼容性">浏览器兼容性</h2> + +<p>{{ page("/en-US/docs/Web/API/DeviceOrientationEvent","Browser_compatibility") }}</p> + +<h2 id="更多资料">更多资料</h2> + +<ul> + <li>{{ event("deviceorientation") }}</li> + <li>{{ domxref("DeviceOrientationEvent") }}</li> + <li><a href="/en/Detecting_device_orientation" title="Detecting device orientation">Detecting device orientation</a></li> +</ul> |