The vrdisplayactivate
event of the WebVR API is fired when a VR display is able to be presented to, for example if an HMD has been moved to bring it out of standby, or woken up by being put on.
Bubbles | No |
---|---|
Cancelable | No |
Interface | VRDisplayEvent |
Event handler property | onvrdisplayactivate |
Examples
You can use the vrdisplayactivate
event in an addEventListener
method:
window.addEventListener('vrdisplayactivate', function() {
info.textContent = 'Display activated.';
reportDisplays();
});
Or use the onvrdisplayactivate
event handler property:
window.onvrdisplayactivate = function() {
info.textContent = 'Display activated.';
reportDisplays();
};
Specifications
Specification | Status | Comment |
---|---|---|
WebVR 1.1 The definition of 'vrdisplayactivate' in that specification. |
Draft | Initial definition |
Browser compatibility
BCD tables only load in the browser
See also
- WebVR API homepage
- https://mixedreality.mozilla.org/ — demos, downloads, and other resources from the Mozilla VR team.