WebXR is a group of standards which are used together to support rendering 3D scenes to hardware designed for presenting virtual worlds ( virtual reality ,或 VR ), or for adding graphical imagery to the real world, ( augmented reality ,或 AR ). WebXR 设备 API implements the core of the WebXR feature set, managing the selection of output devices, render the 3D scene to the chosen device at the appropriate frame rate, and manage motion vectors created using input controllers.
WebXR-compatible devices include fully-immersive 3D headsets with motion and orientation tracking, eyeglasses which overlay graphics atop the real world scene passing through the frames, and handheld mobile phones which augment reality by capturing the world with a camera and augment that scene with computer-generated imagery.
To accomplish these things, the WebXR Device API provides the following key capabilities:
At the most basic level, a scene is presented in 3D by computing the perspective to apply to the scene in order to render it from the viewpoint of each of the user's eyes by computing the position of each eye and rendering the scene from that position, looking in the direction the user is currently facing. Each of these two images is rendered into a single framebuffer, with the left eye's rendered image on the left and the right eye's viewpoint rendered into the right half of the buffer. Once both eyes' perspectives on the scene have been rendered, the resulting framebuffer is delivered to the WebXR device to be presented to the user through their headset or other appropriate display device.
While the older WebVR API was designed solely to support Virtual Reality (VR), WebXR provides support for both VR and Augmented Reality (AR) on the web. Support for AR functionality is added by the WebXR Augmented Reality Module.
A typical XR device can have either 3 or 6 degrees of freedom and might or might not have an external positional sensor.
The equipment may also include an accelerometer, barometer, or other sensors which are used to sense when the user moves through space, rotates their head, or the like.
To gain access to the WebXR API within the context of a given window, use the
navigator.xr
property, which returns an
XRSystem
object through which the entire WebXR Device APi is then exposed.
navigator.xr
只读
Navigator
interface, returns the
XRSystem
object through which the WebXR API is exposed. If this property is missing or
null
, WebXR is not available.
XR
navigator.xr
property returns the window's instance of
XRSystem
, which is the mechanism by which your code accesses the WebXR API. Using the
XRSystem
interface, you can create
XRSession
s to represent actual AR and/or VR sessions.
XRFrame
XRFrame
. To get an
XRFrame
, call the session's
requestAnimationFrame()
method, providing a callback which will be called with the
XRFrame
once available. Events which communicate tracking states will also use
XRFrame
to contain that information.
XRRenderState
XRSession
is composited.
XRSession
XRSession
is obtained from
navigator.xr.requestSession()
, the session can be used to check the position and orientation of the viewer, query the device for environment information, and present the virtual or augmented world to the user.
XRSpace
XRSpace
is an opaque base class on which all virtual coordinate system interfaces are based. Positions in WebXR are always expressed in relation to a particular
XRSpace
at the time at which a particular
XFrame
takes place. The space's coordinate system has its origin at the a given physical position.
XRReferenceSpace
XRSpace
which is used to identify a spatial relationship in relation to the user's physical environment. The
XRReferenceSpace
coordinate system is expected to remain unchanged through the lifespan of the
XRSession
.The world has no boundaries and extends infinitely in every direction.
XRBoundedReferenceSpace
XRBoundedReferenceSpace
extends the
XRReferenceSpace
coordinate system to further include support for a finite world with set boundaries. Unlike
XRReferenceSpace
, the origin must be located on the floor (that is,
y
= 0 at the floor). The x and z components of the origin are typically presumed to be located at or near the center of the room or surface.
XRView
XRView
corresponds to the video display surface used to present the scene to the user. For example, a given XR device might have two views: one for the left eye and one for the right. Each view has an offset used to shift the position of the view relative to the camera, in order to allow for creating stereographic effects.
XRViewport
XRView
, such as the portion of the WebGL framebuffer used to render one of the two eyes' perspectives on the scene.
XRRigidTransform
XRSpace
.
XRPose
XRSpace
.
XRViewerPose
XRPose
,
XRViewerPose
specifies the state of a viewer of the WebXR scene as indicated by the XR device. Included is an array of
XRView
objects, each representing one perspective on the scene. For example, it takes two views to create the stereoscopic view as perceived by human vision—one for the left eye and a second for the right eye. One view is offset to the left slightly from the viewer's position, and the other view is offset to the right by the same distance. The view list can also be used to represent the perspectives of each of the spectators of a scene, in a multi-user environment.
XRInputSource
XRInputSource
实例。
XRWebGLLayer
The following interfaces are used to represent the events used by the WebXR API.
XRInputSourceEvent
XRInputSource
changes. This can happen, for example, when the position and/or orientation of the device changes, or when buttons are pressed or released.
XRInputSourcesChangeEvent
XRSession
.
XRReferenceSpaceEvent
XRReferenceSpace
改变。
XRSessionEvent
XRSession
has changed. For example, if the position and/or orient
The WebGL API is extended by the WebXR specification to augment the WebGL context to allow it to be used to render views for display by a WebXR device.
WebGLRenderingContextBase.makeXRCompatibile()
xrCompatible
特性被设为
true
,必须调用
makeXRCompatible()
prior to attempting to use the WebGL context for WebXR rendering. Returns a
Promise
which resolves once the context has been prepared, or is rejected if the context cannot be configured for use by WebXR.
The following guides and tutorials are a great resource to learn how to comprehend WebXR and the underlying 3D and VR/AR graphics concepts.
Before diving into the details of how to create content using WebXR, it may be helpful to read this overview of the technology, which includes introductions to terminology that may be unfamiliar to you, or which may be used in a new way.
A guide covering how matrices can be used on the web, including both for CSS transforms and for WebGL purposes, as well as to handle the positioning and orientation of objects in WebXR contexts.
An overview of the overall life cycle of a WebXR application, from startup to shutdown. This article serves as an introduction to the basics of what's involved in creating a WebXR experience without diving into the code in detail. It's a good way to prepare for the next steps.
Before actually presenting a scene using an XR device such as a headset or goggles, you need to create a WebXR session bound to a rendering layer that draws the scene for presentation in each of the XR device's displays so that the 3D effect can be presented to the user. This guide covers how to create and stop WebXR sessions.
In this guide, the required concepts of 3D geometry are briefly reviewed, and the fundamentals of how that geometry is represented in WebXR are detailed. Learn how reference spaces are used to position objects—and the viewer—and the differences among the available types of reference space, as well as their use cases.
This guide describes how objects—including the user's body and its parts—are located in space, and how their movement and orientation relative to one another is monitored and managed over time. This article explains the relationship between spaces, poses, viewers, and views.
Starting with how you schedule frames to be rendered, this guide then continues to cover how to determine the placement of objects in the view and how to then render them into the WebGL buffer used for each of the two eyes' views of the scene.
WebGL (and therefore WebXR) doesn't really have a concept of a camera, which is the traditional concept used to represent a viewpoint in 3D graphics. In this article, we see how to simulate a camera and how to create the illusion of moving a viewer through a world in which the viewer doesn't really move.
Since WebXR rendering is based upon WebGL, the same lighting techniques used for any 3D application are applied to WebXR scenes. However, there are issues specific to creating augmented and virtual reality settings that need to be considered when writing your lighting code. This article discusses those issues.
bounded-floor
reference space to define the boundaries of where the viewer can safely move about without leaving the area tracked by their XR hardware or colliding with a physical obstacle. On devices which support it,
bounded-floor
can be a useful tool in your repertoire.
In this example and tutorial, we use information learned throughout the WebXR documentation to create a scene containing a rotating cube which the user can move around using both VR headset and keyboard and mouse.
A guide to input sources and how to efficiently manage the input devices being used to control the WebXR session, and how to receive and process user inputs from those devices.
How to use an input source's targeting ray mode and targeting ray space to display a targeting ray, identify targeted surfaces or objects, and perform related tasks.
Gamepad
object to describe the controls available on complex input devices (such as hand controllers with multiple buttons and/or axes) and gamepad-like devices. In this guide, learn how to make use of these devices' controls.
Recommendations and tips to help you optimize the performance of your WebXR application.
The WebXR Device API has several areas of security to contend with, from establishing feature-policy to ensuring the user intends to use the mixed reality presentation before activating it.
In 3D environments, which may either be 3D scenes rendered to the screen or a mixed reality experience experienced using a headset, it's important for audio to be performed so that it sounds like it's coming from the direction of its source. This guide covers how to accomplish this.
| 规范 | 状态 | 注释 |
|---|---|---|
| WebXR 设备 API | 工作草案 | 初始定义。 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
xr
|
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 |
完整支持
不支持
实验。期望将来行为有所改变。