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