-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
title: "Navigator: windowControlsOverlay プロパティ" | ||
short-title: windowControlsOverlay | ||
slug: Web/API/Navigator/windowControlsOverlay | ||
l10n: | ||
sourceCommit: b0c8b07682c8d2cecc544f60468f3cf6fc20ac99 | ||
--- | ||
|
||
{{SecureContext_Header}}{{APIRef("")}} | ||
|
||
**`windowControlsOverlay`** は {{domxref("Navigator")}} インターフェイスの読み取り専用プロパティで、{{domxref("WindowControlsOverlay")}} インターフェイスを返します。このインターフェイスは、[ウィンドウ制御オーバーレイ API](/ja/docs/Web/API/Window_Controls_Overlay_API) を使用するデスクトップのプログレッシブウェブアプリのタイトルバーの形状に関する情報を公開します。 | ||
|
||
デスクトップのオペレーティングシステムにインストールされたプログレッシブウェブアプリは、ウェブアプリマニフェストのメンバーの [`display_override`](/ja/docs/Web/Manifest/display_override) で `window-controls-overlay` 値を使用することで、ウィンドウ制御オーバーレイ機能を有効にすることができます。 | ||
|
||
そうすることで、既定のウィンドウタイトルバーが非表示になり、アプリがアプリウィンドウの全領域にアクセスできるようになります。 | ||
|
||
## 値 | ||
|
||
{{domxref("WindowControlsOverlay")}} インターフェイスです。 | ||
|
||
## 例 | ||
|
||
```js | ||
if ("windowControlsOverlay" in navigator) { | ||
const rect = navigator.windowControlsOverlay.getTitlebarAreaRect(); | ||
// タイトルバーの領域の長方形に対して何かをする。 | ||
} else { | ||
// ウィンドウ制御オーバーレイ機能が利用できない。 | ||
} | ||
``` | ||
|
||
## 仕様書 | ||
|
||
{{Specifications}} | ||
|
||
## ブラウザーの互換性 | ||
|
||
{{Compat}} |