这是
实验性技术
检查
浏览器兼容性表格
要小心谨慎在生产中使用这之前。
onvrdisplaypresentchange
特性为
Window
interface represents an event handler that will run when the presenting state of a VR display changes — i.e. goes from presenting to not presenting, or vice versa (when the
vrdisplaypresentchange
事件激发)。
The event object is of type
VRDisplayEvent
.
window.onvrdisplaypresentchange = functionRef;
The presenting state of a
VRDisplay
can be checked using the
VRDisplay.isPresenting
特性。
window.onvrdisplaypresentchange = function() {
if(vrDisplay.isPresenting) {
info.textContent = 'Display has started presenting.';
} else {
info.textContent = 'Display has stopped presenting.';
}
};
| 规范 | 状态 | 注释 |
|---|---|---|
|
WebVR 1.1
The definition of 'onvrdisplaypresentchange' in that specification. |
草案 | 初始定义 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
onvrdisplaypresentchange
弃用
|
Chrome
65 — 80
Disabled
|
Edge 15 |
Firefox
55
|
IE No | Opera No | Safari No | WebView Android No |
Chrome Android
56 — 80
|
Firefox Android 55 | Opera Android No | Safari iOS No |
Samsung Internet Android
6.0
|
完整支持
不支持
实验。期望将来行为有所改变。
弃用。不要用于新网站。
见实现注意事项。
用户必须明确启用此特征。