This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The read-only domOverlayState property of an immersive-ar XRSession provides information about the DOM overlay, if the feature is enabled.
Returns null if the DOM overlay feature is not supported or not enabled or an object containing information about the DOM overlay state with the following properties:
typeA string indicating how the DOM overlay is being displayed. Possible values:
screenThe overlay is drawn on the entire screen-based device (for handheld AR devices).
head-lockedThe overlay is drawn at a head-locked UI that fills the renderable viewport and follows the user's head movement.
floatingThe overlay appears as a rectangle floating in space that's kept in front of the user. It doesn't necessarily fill up the entire space and/or is strictly head-locked.
if (session.domOverlayState) {
console.log(session.domOverlayState.type);
} else {
console.log("DOM overlay not supported or enabled!");
}
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
domOverlayState |
83 | 83 | No | 69 | No | 83 | No | 59 | No | 13.0 | No | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/XRSession/domOverlayState