安全上下文
此特征只可用于
安全上下文
(HTTPS),在某些或所有
支持浏览器
.
XRInputSourceEvent
interface's read-only
inputSource
property specifies the
XRInputSource
which generated the input event.
This information lets you handle the event appropriately given the particulars of the user input device being manipulated.
let inputSource = xrInputSourceEvent.inputSource;
XRInputSource
object identifying the source of the user input event. This event indicates an action the user has taken using a WebXR input controller, such as a hand controller, motion sensing device, or other input apparatus.
The snippet below shows a handler for the
select
event which looks specifically for events which happen on
gaze
input devices. The device type is identified by looking at the
XRInputSource
in
inputSource
及其
targetRayMode
特性。
xrSession.onselect = event => {
let source = event.inputSource;
if (source.targetRayMode == "gaze") {
/* handle selection using a gaze input */
}
};
| 规范 | 状态 | 注释 |
|---|---|---|
|
WebXR 设备 API
The definition of 'XRInputSourceEvent.inputSource' in that specification. |
工作草案 | 初始定义。 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
inputSource
|
Chrome 79 | Edge 79 | Firefox 不支持 No | IE 不支持 No | Opera 不支持 No | Safari 不支持 No | WebView Android 不支持 No | Chrome Android 79 | Firefox Android 不支持 No | Opera Android 不支持 No | Safari iOS 不支持 No | Samsung Internet Android 11.2 |
完整支持
不支持
XRInputSourceEvent
frame
inputSource
Navigator.xr
WebGLRenderingContext.makeXRCompatible()
XR
XRBoundedReferenceSpace
XRFrame
XRInputSource
XRInputSourceArray
XRInputSourcesChangeEvent
XRPose
XRReferenceSpace
XRReferenceSpaceEvent
XRRenderState
XRRigidTransform
XRSession
XRSessionEvent
XRSpace
XRView
XRViewerPose
XRViewport
XRWebGLLayer