diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
commit | 074785cea106179cb3305637055ab0a009ca74f2 (patch) | |
tree | e6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/ru/web/api/vrdisplayevent/index.html | |
parent | da78a9e329e272dedb2400b79a3bdeebff387d47 (diff) | |
download | translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2 translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip |
initial commit
Diffstat (limited to 'files/ru/web/api/vrdisplayevent/index.html')
-rw-r--r-- | files/ru/web/api/vrdisplayevent/index.html | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/files/ru/web/api/vrdisplayevent/index.html b/files/ru/web/api/vrdisplayevent/index.html new file mode 100644 index 0000000000..8b8c2bee90 --- /dev/null +++ b/files/ru/web/api/vrdisplayevent/index.html @@ -0,0 +1,63 @@ +--- +title: VRDisplayEvent +slug: Web/API/VRDisplayEvent +tags: + - Виртуальная реальность +translation_of: Web/API/VRDisplayEvent +--- +<div>{{APIRef("WebVR API")}}{{SeeCompatTable}}</div> + +<p>Интерфейс VRDisplayEvent API WebVR представляет объект событий, связанных с WebVR (Подробнее - см. Список расширений окна WebVR)</p> + +<h2 id="Constructor">Constructor</h2> + +<dl> + <dt>{{domxref("VRDisplayEvent.VRDisplayEvent()")}}</dt> + <dd>Создает экземпляр объекта VRDisplayEvent.</dd> +</dl> + +<h2 id="Properties">Properties</h2> + +<p><em><code>VRDisplayEvent</code> также наследует свойства от своего родительского объекта, {{domxref("Event")}}.</em></p> + +<dl> + <dt>{{domxref("VRDisplayEvent.display")}} {{readonlyInline}}</dt> + <dd> {{domxref("VRDisplay")}} связанный с этим событием.</dd> + <dt>{{domxref("VRDisplayEvent.reason")}} {{readonlyInline}}</dt> + <dd>Определяемая человеческим фактором причина, по которой произошло событие.</dd> +</dl> + +<h2 id="Examples">Examples</h2> + +<pre class="brush: js">window.addEventListener('vrdisplaypresentchange', function(e) { + console.log('Display ' + e.display.displayId + ' presentation has changed. Reason given: ' + e.reason + '.'); +}) +</pre> + +<h2 id="Specifications">Specifications</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + <tr> + <td>{{SpecName('WebVR 1.1', '#interface-vrdisplayevent', 'VRDisplayEvent')}}</td> + <td>{{Spec2('WebVR 1.1')}}</td> + <td>Initial definition</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility">Browser compatibility</h2> + +<p>{{Compat("api.VRDisplayEvent")}}</p> + +<h2 id="See_also">See also</h2> + +<ul> + <li><a href="/en-US/docs/Web/API/WebVR_API">WebVR API homepage</a></li> + <li><a href="http://mozvr.com/">MozVr.com</a> — демонстрации, загружаемые материалы и другие ресурсы команды the Mozilla VR team.</li> +</ul> |