web api instance property
WindowControlsOverlay: visible property
Limited availability
The visible read-only property of the WindowControlsOverlay interface returns a Boolean that indicates whether the window controls overlay is visible or not.
The window controls overlay is not be visible if:
- The Web App Manifest’s
display_overridemember is not set towindow-controls-overlay. - Or, if the user has opted-out of the feature.
Value
A boolean.
Examples
if (navigator.windowControlsOverlay.visible) {
// Execute code if the controls overlay is visible.
} else {
// Do something else when it isn't visible.
}
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- The
WindowControlsOverlayinterface it belongs to.