blob: c9bde836d931b9a11d178e6cc44f76a7c4e7e0cc (
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
|
---
title: Window.ondeviceorientation
slug: Web/API/Window/ondeviceorientation
tags:
- API
- Мобильные устройства
- Ориентация
- Ориентация устройства
- Свойства
translation_of: 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">Спецификация</th>
<th scope="col">Статус</th>
<th scope="col">Комментарий</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('Device Orientation')}}</td>
<td>{{Spec2('Device Orientation')}}</td>
<td>Начальная спецификация.</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">Определение ориентации устройства</a> </li>
</ul>
|