这是
实验性技术
检查
浏览器兼容性表格
要小心谨慎在生产中使用这之前。
reason
只读特性在
VRDisplayEvent
interface returns a human-readable reason why the event was fired.
var myReason = vrDisplayEventInstance.reason;
A string representing the reason why the event was fired. The available reasons are defined in the
VRDisplayEventReason
enum, and are as follows:
mounted
—
VRDisplay
has detected that the user has put it on (or it has been otherwise activated).
navigation
— The page has been navigated to from a context that allows this page to begin presenting immediately, such as from another site that was already in VR presentation mode.
requested
— The user agent has requested that VR presentation mode be started. This allows user agents to include a consistent UI to enter VR across different sites.
unmounted
—
VRDisplay
has detected that the user has taken it off (or it has been otherwise slept/put on standby).
window.addEventListener('vrdisplaypresentchange', function(e) {
console.log('Display ' + e.display.displayId + ' presentation has changed. Reason given: ' + e.reason + '.');
})
| 规范 | 状态 | 注释 |
|---|---|---|
|
WebVR 1.1
The definition of 'reason' in that specification. |
草案 | 初始定义 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
reason
弃用
|
Chrome No | Edge 15 — 79 |
Firefox
55
|
IE No | Opera ? | Safari No | WebView Android No |
Chrome Android
56 — 80
Disabled
|
Firefox Android 55 | Opera Android ? | Safari iOS ? |
Samsung Internet Android
6.0
|
完整支持
不支持
兼容性未知
实验。期望将来行为有所改变。
弃用。不要用于新网站。
见实现注意事项。
用户必须明确启用此特征。
VRDisplayEvent
display
reason