XRSession.onvisibilitychange

The onvisibilitychange attribute of the XRSession object is the event handler for the visibilitychange event, which is dispatched when the visibility state of the XR session changes. The visibility state of the session is accessible via XRSession.visibilityState.

Note: The visibility state of XR session affects the frame loop so callbacks registered via XRSession.requestAnimationFrame() might not be called. Consult XRSession.visibilityState article for details.

Syntax

XRSession.onvisibilitychange = function(event) { ... }

Example

XRSession.onvisibilitychange = function(event) {
  console.log("The visibility the XR session changed.")
}

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
onvisibilitychange
79
79
No
No
No
No
No
79
No
No
No
11.2

See also

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/XRSession/onvisibilitychange