From 6c3d6e18f6982382febbc67f4345b4eaf8152ec0 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Tue, 18 Jan 2022 20:25:46 +0900 Subject: 2021/09/15 時点の英語版に基づき新規翻訳 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../shadowroot/pictureinpictureelement/index.md | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 files/ja/web/api/shadowroot/pictureinpictureelement/index.md 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")}} -- cgit v1.2.3-54-g00ecf