diff options
Diffstat (limited to 'files/ru/web/api/window/ondeviceorientation/index.html')
-rw-r--r-- | files/ru/web/api/window/ondeviceorientation/index.html | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/files/ru/web/api/window/ondeviceorientation/index.html b/files/ru/web/api/window/ondeviceorientation/index.html new file mode 100644 index 0000000000..c9bde836d9 --- /dev/null +++ b/files/ru/web/api/window/ondeviceorientation/index.html @@ -0,0 +1,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> |