ShadowRoot:pictureInPictureElement 属性

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

ShadowRoot 接口的 pictureInPictureElement 只读属性返回此影子树中当前以画中画模式呈现的 Element,如果当前未使用画中画模式,则返回 null

对当前处于画中画模式的 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

参见