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 | |
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')
-rw-r--r-- | files/ru/web/api/vrdisplayevent/display/index.html | 49 | ||||
-rw-r--r-- | files/ru/web/api/vrdisplayevent/index.html | 63 |
2 files changed, 112 insertions, 0 deletions
diff --git a/files/ru/web/api/vrdisplayevent/display/index.html b/files/ru/web/api/vrdisplayevent/display/index.html new file mode 100644 index 0000000000..318bd97188 --- /dev/null +++ b/files/ru/web/api/vrdisplayevent/display/index.html @@ -0,0 +1,49 @@ +--- +title: VRDisplayEvent.display +slug: Web/API/VRDisplayEvent/display +tags: + - Виртуальная реальность +translation_of: Web/API/VRDisplayEvent/display +--- +<div>{{APIRef("WebVR API")}}{{SeeCompatTable}}<br> + Cвойство <strong><code>display</code></strong>только для чтения интерфейса {{domxref ("VRDisplayEvent")}} возвращает параметр {{domxref ("VRDisplay")}}, связанный с этим событием.</div> + +<h2 id="Синтаксис">Синтаксис</h2> + +<pre class="brush: js">var myDisplay = vrDisplayEventInstance.display;</pre> + +<h3 id="Значение">Значение</h3> + +<p>A {{domxref("VRDisplay")}} object.</p> + +<h2 id="Пример">Пример</h2> + +<p>{{page("/Web/API/VRDisplayEvent", "Examples")}}</p> + +<h2 id="Спецификации">Спецификации</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Спецификация</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + <tr> + <td>{{SpecName('WebVR 1.1', '#dom-vrdisplayeventinit-display', 'display')}}</td> + <td>{{Spec2('WebVR 1.1')}}</td> + <td>Initial definition</td> + </tr> + </tbody> +</table> + +<h2 id="Совместимость_браузера">Совместимость браузера</h2> + +<p>{{Compat("api.VRDisplayEvent.display")}}</p> + +<h2 id="Дополнительно">Дополнительно</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> — демонстрационные материалы,материалы для загрузки и другие ресурсы команды Mozilla VR team.</li> +</ul> 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> |