VRDisplayCapabilities
Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
Non-standard: This feature is not standardized. We do not recommend using non-standard features in production, as they have limited browser support, and may change or be removed. However, they can be a suitable alternative in specific cases where no standard option exists.
Giao diện VRDisplayCapabilities của WebVR API mô tả các khả năng của VRDisplay, các tính năng của nó có thể được sử dụng để thực hiện kiểm tra khả năng thiết bị VR, ví dụ như liệu nó có thể trả về thông tin vị trí hay không.
Note: Giao diện này là một phần của WebVR API cũ WebVR API. Nó đã được thay thế bởi WebXR Device API.
Giao diện này có thể truy cập qua thuộc tính VRDisplay.capabilities.
Thuộc tính phiên bản
VRDisplayCapabilities.canPresentĐã lỗi thời Read only Không chuẩn-
Trả về giá trị boolean cho biết liệu màn hình VR có khả năng trình bày nội dung hay không (ví dụ: qua HMD).
VRDisplayCapabilities.hasExternalDisplayĐã lỗi thời Read only Không chuẩn-
Trả về giá trị boolean cho biết liệu màn hình VR có tách biệt với màn hình chính của thiết bị hay không.
VRDisplayCapabilities.hasOrientationĐã lỗi thời Read only Không chuẩn-
Trả về giá trị boolean cho biết liệu màn hình VR có thể theo dõi và trả về thông tin hướng hay không.
VRDisplayCapabilities.hasPositionĐã lỗi thời Read only Không chuẩn-
Trả về giá trị boolean cho biết liệu màn hình VR có thể theo dõi và trả về thông tin vị trí hay không.
VRDisplayCapabilities.maxLayersĐã lỗi thời Read only Không chuẩn-
Trả về số cho biết số lượng tối đa
VRLayerInitmà màn hình VR có thể trình bày cùng một lúc (ví dụ: độ dài tối đa của mảng màVRDisplay.requestPresent()có thể chấp nhận.)
Ví dụ
function reportDisplays() {
navigator.getVRDisplays().then((displays) => {
displays.forEach((display, i) => {
const cap = display.capabilities;
// cap is a VRDisplayCapabilities object
const listItem = document.createElement("li");
listItem.innerText = `
VR Display ID: ${display.displayId}
VR Display Name: ${display.displayName}
Display can present content: ${cap.canPresent}
Display is separate from the computer's main display: ${cap.hasExternalDisplay}
Display can return position info: ${cap.hasPosition}
Display can return orientation info: ${cap.hasOrientation}
Display max layers: ${cap.maxLayers}`;
listItem.insertBefore(
document.createElement("strong"),
listItem.firstChild,
).textContent = `Display ${i + 1}`;
list.appendChild(listItem);
});
});
}
Thông số kỹ thuật
Giao diện này là một phần của WebVR API cũ WebVR API đã được thay thế bởi WebXR Device API. Nó không còn trong lộ trình để trở thành tiêu chuẩn nữa.
Cho đến khi tất cả các trình duyệt triển khai WebXR APIs mới, khuyến nghị dựa vào các framework như A-Frame, Babylon.js, hoặc Three.js, hoặc một polyfill, để phát triển ứng dụng WebXR hoạt động trên tất cả các trình duyệt. Đọc hướng dẫn Porting from WebVR to WebXR của Meta để biết thêm thông tin.