WindowControlsOverlay: visible Eigenschaft
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimentell: Dies ist eine experimentelle Technologie
Überprüfen Sie die Browser-Kompatibilitätstabelle sorgfältig vor der Verwendung auf produktiven Webseiten.
Die schreibgeschützte Eigenschaft visible
des WindowControlsOverlay
-Interfaces gibt einen Boolean zurück, der anzeigt, ob das Fenstersteuerungs-Overlay sichtbar ist oder nicht.
Das Fenstersteuerungs-Overlay ist nicht sichtbar, wenn:
- Das Mitglied
display_override
des Web App Manifestes nicht aufwindow-controls-overlay
gesetzt ist. - Oder, wenn der Benutzer sich gegen die Funktion entschieden hat.
Wert
Ein boolean.
Beispiele
js
if (navigator.windowControlsOverlay.visible) {
// Execute code if the controls overlay is visible.
} else {
// Do something else when it isn't visible.
}
Spezifikationen
Specification |
---|
Window Controls Overlay # the-visible-attribute |
Browser-Kompatibilität
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
visible |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- No support
- No support
- Experimental. Expect behavior to change in the future.
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Siehe auch
- Das
WindowControlsOverlay
-Interface, zu dem es gehört.