ShadowRoot:pointerLockElement 属性

ShadowRoot 接口的 pointerLockElement 只读属性提供在指针锁定时作为鼠标事件目标的元素集。如果指针处于锁定等待中、指针没有被锁定或目标元素在另外一棵树中,则该属性为 null

Elementnull

示例

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

规范

Specification
Pointer Lock 2.0
# dom-documentorshadowroot-pointerlockelement

浏览器兼容性

BCD tables only load in the browser

参见