Web/API/Window/onvrdisplaypresentchange

From Get docs

This is an experimental technologyCheck the Browser compatibility table carefully before using this in production.


The onvrdisplaypresentchange property of the Window interface represents an event handler that will run when the presenting state of a VR display changes — i.e. goes from presenting to not presenting, or vice versa (when the vrdisplaypresentchange event fires).

The event object is of type VRDisplayEvent.

Syntax

window.onvrdisplaypresentchange = functionRef;

Examples

The presenting state of a VRDisplay can be checked using the VRDisplay.isPresenting property.

window.onvrdisplaypresentchange = function() {
  if(vrDisplay.isPresenting) {
    info.textContent = 'Display has started presenting.';
  } else {
    info.textContent = 'Display has stopped presenting.';
  }
};

Specifications

Specification Status Comment
WebVR 1.1The definition of 'onvrdisplaypresentchange' in that specification. Draft Initial definition

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet

onvrdisplaypresentchange

Experimental'Deprecated'

Chrome No support 65 — 80

Disabled'

No support 65 — 80

Disabled'

Disabled' From version 65 until version 80 (exclusive): this feature is behind the WebVR preference (needs to be set to Enabled). To change preferences in Chrome, visit chrome://flags.

Edge

Full support 15

Firefox Full support 55

Notes'

Full support 55

Notes'

Notes' Windows support was enabled in Firefox 55. Full support 64

Notes'

Notes' macOS support was enabled in Firefox 64.

IE

No support No

Opera

No support No

Safari

No support No

WebView Android

No support No

Chrome Android No support 56 — 80

Notes'

No support 56 — 80

Notes'

Notes' Chrome for Android 56 supports only Google Daydream View. Notes' Chrome for Android 57 adds support for Google Cardboard.

Firefox Android

Full support 55

Opera Android

No support No

Safari iOS

No support No

Samsung Internet Android Full support 6.0

Notes'

Full support 6.0

Notes'

Notes' Supported on Samsung Internet for GearVR.

Legend

Full support  
Full support
No support  
No support
Experimental. Expect behavior to change in the future.'
Experimental. Expect behavior to change in the future.
Deprecated. Not for use in new websites.'
Deprecated. Not for use in new websites.
See implementation notes.'
See implementation notes.
User must explicitly enable this feature.'
User must explicitly enable this feature.


See also