Web/API/Window/vrdisplaypresentchange event

From Get docs


The vrdisplaypresentchange event of the WebVR API is fired when the presenting state of a VR display changes — i.e. goes from presenting to not presenting, or vice versa.


Bubbles No
Cancelable No
Interface VRDisplayEvent
Event handler property onvrdisplaypresentchange

Examples

You can use the vrdisplaypresentchange event in an addEventListener method:

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

Or use the onvrdisplaypresentchange event handler property:

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

Specifications

Specification Status Comment
WebVR 1.1The definition of 'vrdisplaypresentchange' 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

vrdisplaypresentchange event

Experimental'

Chrome Full support 65

Disabled'

Full support 65

Disabled'

Disabled' From version 65: 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 Full support 56

Notes'

Full support 56

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.
See implementation notes.'
See implementation notes.
User must explicitly enable this feature.'
User must explicitly enable this feature.


See also