diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-18 20:59:20 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-26 08:55:52 +0900 |
commit | 18ed23232854c241163a956dac49e83282cd2eff (patch) | |
tree | 01cb2c53308cea3ab5f32e9cba29b79693bb31b3 | |
parent | 0d86fe8d2a9bbea46a288df07e28a369960fbc15 (diff) | |
download | translated-content-18ed23232854c241163a956dac49e83282cd2eff.tar.gz translated-content-18ed23232854c241163a956dac49e83282cd2eff.tar.bz2 translated-content-18ed23232854c241163a956dac49e83282cd2eff.zip |
2021/09/15 時点の英語版に基づき新規翻訳
-rw-r--r-- | files/ja/web/api/shadowroot/fullscreenelement/index.md | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/files/ja/web/api/shadowroot/fullscreenelement/index.md b/files/ja/web/api/shadowroot/fullscreenelement/index.md new file mode 100644 index 0000000000..b0191f1aa2 --- /dev/null +++ b/files/ja/web/api/shadowroot/fullscreenelement/index.md @@ -0,0 +1,46 @@ +--- +title: ShadowRoot.fullscreenElement +slug: Web/API/ShadowRoot/fullscreenElement +tags: + - API + - プロパティ + - リファレンス + - ShadowRoot + - ウェブコンポーネント + - シャドウ DOM +browser-compat: api.ShadowRoot.fullscreenElement +translation_of: Web/API/ShadowRoot/fullscreenElement +--- +{{APIRef("Shadow DOM")}} + +**`fullscreenElement`** は {{domxref("ShadowRoot")}} インターフェイスの読み取り専用プロパティで、現在全画面モードで表示されているシャドウツリー内の要素を返します。 + +## 構文 + +```js +shadowRoot.fullscreenElement +``` + +### 値 + +現在全画面モードで表示されている {{domxref('Element')}}、または全画面モードの要素がなければ `null` を返します。 + +## 例 + +```js +let customElem = document.querySelector('my-shadow-dom-element'); +let shadow = customElem.shadowRoot; +let fullscreenElem = shadow.fullscreenElement; +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- {{domxref("Document.fullscreenElement")}} |