diff options
Diffstat (limited to 'files/ru/conflicting')
-rw-r--r-- | files/ru/conflicting/web/api/window/deviceorientation_event/index.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/files/ru/conflicting/web/api/window/deviceorientation_event/index.html b/files/ru/conflicting/web/api/window/deviceorientation_event/index.html new file mode 100644 index 0000000000..7ce1ddf2cf --- /dev/null +++ b/files/ru/conflicting/web/api/window/deviceorientation_event/index.html @@ -0,0 +1,39 @@ +--- +title: Window.ondeviceorientation +slug: conflicting/Web/API/Window/deviceorientation_event +tags: + - API + - Мобильные устройства + - Ориентация + - Ориентация устройства + - Свойства +translation_of: Web/API/Window/ondeviceorientation +original_slug: Web/API/Window/ondeviceorientation +--- +<p>{{ ApiRef() }}</p> + +<h2 id="Summary">Кратко</h2> + +<p>Обработчик события {{event('deviceorientation')}}, который содержит информацию об изменении относительной ориентации устройства.</p> + +<h2 id="Syntax">Синтаксис</h2> + +<pre class="syntaxbox">window.ondeviceorientation = function(event) { ... }; +window.addEventListener('deviceorientation', function(event) { ... }); +</pre> + +<h2 id="Спецификации">Спецификации</h2> + +{{Specifications}} + +<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> |