From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- files/ru/web/api/vrdisplayevent/display/index.html | 49 +++++++++++++++++ files/ru/web/api/vrdisplayevent/index.html | 63 ++++++++++++++++++++++ 2 files changed, 112 insertions(+) create mode 100644 files/ru/web/api/vrdisplayevent/display/index.html create mode 100644 files/ru/web/api/vrdisplayevent/index.html (limited to 'files/ru/web/api/vrdisplayevent') 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 +--- +
{{APIRef("WebVR API")}}{{SeeCompatTable}}
+ Cвойство  displayтолько для чтения интерфейса {{domxref ("VRDisplayEvent")}} возвращает параметр {{domxref ("VRDisplay")}}, связанный с этим событием.
+ +

Синтаксис

+ +
var myDisplay = vrDisplayEventInstance.display;
+ +

Значение

+ +

A {{domxref("VRDisplay")}} object.

+ +

Пример

+ +

{{page("/Web/API/VRDisplayEvent", "Examples")}}

+ +

Спецификации

+ + + + + + + + + + + + + + +
СпецификацияStatusComment
{{SpecName('WebVR 1.1', '#dom-vrdisplayeventinit-display', 'display')}}{{Spec2('WebVR 1.1')}}Initial definition
+ +

Совместимость браузера

+ +

{{Compat("api.VRDisplayEvent.display")}}

+ +

Дополнительно

+ + 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 +--- +
{{APIRef("WebVR API")}}{{SeeCompatTable}}
+ +

Интерфейс VRDisplayEvent API WebVR представляет объект  событий, связанных с WebVR (Подробнее - см. Список расширений окна WebVR)

+ +

Constructor

+ +
+
{{domxref("VRDisplayEvent.VRDisplayEvent()")}}
+
Создает экземпляр объекта VRDisplayEvent.
+
+ +

Properties

+ +

VRDisplayEvent также наследует свойства от своего родительского объекта, {{domxref("Event")}}.

+ +
+
{{domxref("VRDisplayEvent.display")}} {{readonlyInline}}
+
 {{domxref("VRDisplay")}} связанный с этим событием.
+
{{domxref("VRDisplayEvent.reason")}} {{readonlyInline}}
+
Определяемая человеческим фактором причина, по которой произошло событие.
+
+ +

Examples

+ +
window.addEventListener('vrdisplaypresentchange', function(e) {
+  console.log('Display ' + e.display.displayId + ' presentation has changed. Reason given: ' + e.reason + '.');
+})
+
+ +

Specifications

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('WebVR 1.1', '#interface-vrdisplayevent', 'VRDisplayEvent')}}{{Spec2('WebVR 1.1')}}Initial definition
+ +

Browser compatibility

+ +

{{Compat("api.VRDisplayEvent")}}

+ +

See also

+ + -- cgit v1.2.3-54-g00ecf