ShadowRoot.pictureInPictureElement

pictureInPictureElementShadowRoot インターフェイスの読み取り専用プロパティで、このシャドウツリー内で現在、ピクチャインピクチャモードで表示されている要素 (Element) を返します。現在、ピクチャインピクチャモードが使用されていない場合は null を返します。

構文

js
shadowRoot.pictureInPictureElement;

現在ピクチャインピクチャモードになっている Element オブジェクトへの参照、またはピクチャインピクチャモードが現在シャドウツリーで使われていない場合は null が返されます。

js
let customElem = document.querySelector("my-shadow-dom-element");
let shadow = customElem.shadowRoot;
let pipElem = shadow.pictureInPictureElement;

仕様書

Specification
Picture-in-Picture
# ref-for-dom-documentorshadowroot-pictureinpictureelement①⑤

ブラウザーの互換性

BCD tables only load in the browser

関連情報