ShadowRoot:pictureInPictureElement 属性
pictureInPictureElement
是 ShadowRoot
接口的只读属性,它返回当前在此 Shadow Tree 中以画中画模式呈现的 Element
,如果当前未使用画中画模式,则返回 null
。
值
对当前处于画中画模式的 Element
对象的引用,或者如果 Shadow Tree 当前未使用画中画模式,则返回值为 null
。
示例
js
let customElem = document.querySelector("my-shadow-dom-element");
let shadow = customElem.shadowRoot;
let pipElem = shadow.pictureInPictureElement;
规范
规范 |
---|
画中画 # ref-for-dom-documentorshadowroot-pictureinpictureelement①⑤ |
浏览器兼容性
BCD 表格仅在启用了 JavaScript 的浏览器中加载。