1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
|
---
title: WebXR 设备 接口参考
slug: Web/API/WebXR_Device_API
translation_of: Web/API/WebXR_Device_API
---
<p><span class="seoSummary"><strong>WebXR</strong> 是一组支持将渲染3D场景用来呈现虚拟世界(虚拟现实,也称作VR)或将图形图像添加到现实世界(增强现实,也称作AR)的标准。</span> <strong>WebXR 设备 API </strong>实现了 WebXR 功能集的核心,管理输出设备的选择,以适当的帧速率将3D场景呈现给所选设备,并管理使用输入控制器创建的运动矢量。</p>
<p>WebXR-兼容性设备包括沉浸式3D运动和定位跟踪耳机,通过框架覆盖在真实世界场景之上的眼镜,以及手持移动电话,它们通过用摄像机捕捉世界来增强现实,并通过计算机生成的图像增强场景。</p>
<p>为了完成这些事情,WebXR 设备 API 提供了以下关键功能:</p>
<ul>
<li>查找兼容的VR或AR输出设备</li>
<li>以适当的帧率将3D场景渲染到设备</li>
<li>(可选)将输出镜像到2D显示器</li>
<li>创建代表输入控件运动的向量</li>
</ul>
<p><font>在最基本的层面上,通过计算应用于场景的透视图,以从每个用户的视角呈现场景,从而在3D中呈现场景,考虑到眼睛之间的常规距离,然后渲染场景两次,每只眼睛一次。然后将生成的图像(场景在一个帧上呈现两次,每只眼睛一半)显示给用户。</font></p>
<p><font><font>由于 </font></font><a href="/en-US/docs/Web/API/WebGL_API">WebGL</a> <font><font>用于将3D世界渲染到WebXR会话中,因此您首先应该熟悉 WebGL 的一般用法以及3D图形的基本知识。</font><font>您很可能不会直接使用 WebGL API,而是利用在 WebGL 之上构建的框架或库之一来使其使用更加方便。</font><font>其中最流行的是</font></font><a href="https://threejs.org/">three.js</a><font><font>。</font></font></p>
<p><font>使用库而不是直接使用WebGL API的一个特殊好处是,库取向于实现虚拟相机函数性的接口。OpenGL( WebGL 的扩展)不直接提供照相机视图,使用库模拟一个的话可以使您的工作变得非常非常容易,特别是在构建允许在虚拟世界中自由移动的代码时。</font></p>
<h2 id="重要的健康和安全提示">重要的健康和安全提示</h2>
<p><font><font>因为本质上来说,创建虚拟3D世界的整个过程是一个技巧,它利用了我们对眼睛如何收集光以及大脑如何解释所收集的数据的理解,因此务必要牢记,软件设计师开发人员有责任比平时更加小心,以确保结果正确。</font></font></p>
<p><font><font>缺陷,未对准或变形会混淆眼睛和大脑,导致眼睛疼痛或头痛乃至眩晕,头晕或潜在的严重恶心。</font><font>考虑到 VR 护目镜的全部特性,需要特别注意,开发者对可能引起癫痫发作的任何事物都要保持警惕;</font><font>如果它引起困扰,则用户可能无法快速将视线从您呈现的图像上移开。</font></font></p>
<p><font><font>如果您有任何可能对任何用户构成风险的内容,则应提供警告消息。有备无患</font><font>!</font></font></p>
<h2 id="WebXR_设备API_的概念和用法">WebXR 设备API 的概念和用法</h2>
<h3 id="WebXR_AR_and_VR">WebXR: AR and VR</h3>
<figure style="background: #eee; padding: 0.5em; border: 1px solid #aaa; border-radius: 1em; max-width: 20em; margin-bottom: 1em; margin-right: 2em; float: left;">
<figcaption>举例 WebXR 硬件装备</figcaption>
<img alt='Sketch of a person in a chair with wearing goggles labelled "Head mounted display (HMD)" facing a monitor with a webcam labeled "Position sensor"' src="https://mdn.mozillademos.org/files/11035/hw-setup.png"></figure>
<p><font><font>较早的 </font></font><a href="/en-US/docs/Web/API/WebVR_API">WebVR API</a><font><font> 仅设计为支持虚拟现实(VR),而WebXR在Web上同时支持VR和增强现实(AR)。</font><font>WebXR增强现实模块增加了对AR功能的支持。</font></font></p>
<p><br>
典型的XR设备可以具有3或6个自由度,并且有没有外部位置传感器都可以。</p>
<p>该设备还可以包括加速度计,气压计或其他传感器,用于感测用户何时在空间中移动,旋转其头部等。</p>
<h3 id="WebXR_应用程序生命周期">WebXR 应用程序生命周期</h3>
<p>使用WebXR的大多数应用程序将遵循类似的总体设计模式:</p>
<ol>
<li>检查用户的设备和浏览器是否都能够呈现您想要提供的XR体验。
<ol>
<li><font><font>确保 WebXR API 可用;</font><font>如果 </font></font>{{domxref("navigator.xr")}} <font><font>未定义,则可以判断用户的浏览器和/或设备不支持 WebXR。如果不支持,请禁用用于激活 XR 功能的任何用户界面,并中止任何进入 XR 模式的尝试。</font></font></li>
<li>调用 {{DOMxRef("XR.isSessionSupported","navigator.xr.isSessionSupported()")}}, 指定要提供的 WebXR 体验模式: <code>inline</code>, <code>immersive-vr</code>, 或 <code>immersive-ar</code>, 以确定您希望提供的会话类型是否可用。</li>
<li>如果要使用的会话类型可用,请向用户提供适当的界面以允许他们激活它。</li>
</ol>
</li>
<li>当用户通过上述的界面开启了 WebXR 功能后,通过调用 {{DOMxRef("XR.requestSession","navigator.xr.requestSession()")}},也是指定使用的模式为以下三种之一: <code>inline</code>, <code>immersive-vr</code>, 或 <code>immersive-ar</code>后,可以将一个 {{DOMxRef("XRSession")}} 设定在期望的模式下。 </li>
<li>当 <code>requestSession()</code> 返回的 promise 被 resolve 后,使用新的 {{domxref("XRSession")}} 在整个 WebXR 体验期间运行帧循环。
<ol>
<li>调用 {{domxref("XRSession")}} 的 {{DOMxRef("XRSession.requestAnimationFrame", "requestAnimationFrame()")}} 方法,以调度 XR 设备的首帧渲染。</li>
<li>每一个 <code>requestAnimationFrame()</code> 的回调都需要使用 WebGL 渲染已提供信息的 3D 世界中的物体。</li>
<li>持续在回调中调用 {{DOMxRef("XRSession.requestAnimationFrame", "requestAnimationFrame()")}} 保证每一帧都成功地按顺序渲染。</li>
</ol>
</li>
<li>当需要结束 XR 会话的时候;或者用户主动退出 XR 模式。
<ol>
<li>通过调用 {{DOMxRef("XRSession.end", "XRSession.end()")}} 可手动结束 XR 会话。</li>
<li>无论通过何种方式(开发者、用户或者浏览器)终止会话,{{domxref("XRSession")}} 的 {{domxref("XRSession.end_event", "end")}} 事件都会接收到通知。</li>
</ol>
</li>
</ol>
<h3 id="获取许可与安全性">获取许可与安全性</h3>
<p>WebXR Device API 受到一系列许可与安全性的控制。这些控制不涉及法律责任,但也需要引起重视。其控制场景主要在于身临其境的 <code>immersive-vr</code> 会话模式和 AR 会话下。</p>
<h4 id="VR_的沉浸式(immersive)">VR 的沉浸式(immersive)</h4>
<p>首先,如果域名不支持请求有权限打开沉浸模式,那么 <code>immersive-vr</code> 模式就会被拒绝。这个权限管理来自<code>xr-spatial-tracking</code> <a href="/en-US/docs/Web/HTTP/Feature_Policy">特征策略</a>。</p>
<p>一旦有权限了,申请开启 <code>immersive-vr</code> 模式的请求还需要再检查以下三点,全部满足才能开启:</p>
<ul>
<li>在用户事件句柄总或者在用户启动 <a href="/en-US/docs/Web/Progressive_web_apps">web 应用</a>中执行的 <code>requestSession()</code> 调用;</li>
<li>文档是可信赖的,其中的内容是可靠的、及时更新的以及有着重点;</li>
<li>用户有明确的使用沉浸式 VR 模式的意图,后文中,<a href="#用户意图">用户意图</a>一节将有详细描述。</li>
</ul>
<p>如果上述三点均满足, <code>requestSession()</code> 返回的 Promise 将被 resolve,新的 {{domxref("XRSession")}} 对象被传入完成时的处理函数中。如果有不满足的情况,将会根据具体场景抛出异常,比如当没有权限进入沉浸式模式情况下, <code>SecurityError</code> 将被抛出。</p>
<h4 id="内联(inline)">内联(inline)</h4>
<p>当你在 <code>inline</code> 模式下发出 {{domxref("XRSession")}} 请求想要请求其他的特性时,浏览器仅允许那些明显由<strong>用户意图</strong>发起才会执行的代码所调用到的 {{domxref("XR.requestSession", "requestSession()")}}。</p>
<p>特别注意:</p>
<ul>
<li>如果 <code>requestSession()</code> 调用的发起既不来自用户事件中,也不是在 Web 应用启动时,那该请求将会被驳回,Promise 放返回 <code>false</code>;</li>
<li>如果发起请求的文档不属于对应的脚本,该请求将被驳回;</li>
<li>如果发起请求的文档不可信任,该请求会被驳回且 Promise 返回 <code>false</code>。一个可信任文档指的是该文档是活跃的、负责任的且有重点的;</li>
<li>如果设备无法明确用户开启内联模式的意图,该请求将会被驳回。对<a href="#用户意图">用户的目的</a>的理解可以是隐性或者显性的。</li>
</ul>
<div class="blockIndicator note">
<p><strong>注意</strong>:当调用 <code>requestSession()</code> 时,根据选择对象需要指定的特性不同,将会执行额外的请求。</p>
</div>
<h4 id="用户意图">用户意图</h4>
<p><strong>用户意图</strong>指的是用户自身是否想执行某个动作的时候可以通过代码控制实际的执行情况。有两种用户意图类型:<strong>显性</strong>和<strong>隐性</strong>。</p>
<p>直接询问用户是否同意执行某个操作,即<strong>显性的用户意图</strong> (用户显示的同意操作) 。</p>
<p>当以下情况发生时,我们可以认为出现了<strong>隐性的用户意图</strong> (用户暗示同意):</p>
<ul>
<li>The user has interacted with the document in some way which has in turn caused your request to occur. For example, if you have an "Enter XR mode" button, and the user clicks it, calling <code>requestSession()</code> from the button's {{domxref("Element.click_event", "click")}} event handler will permitted.</li>
<li>If your code is executing during the launch of a web application, the runtime may consider the act of launching your web application to qualify as user intent.</li>
</ul>
<h3 id="WebXR_的可用性">WebXR 的可用性</h3>
<p>As a new and still in development API, WebXR support is limited to specific devices and browsers; and even on those, it may not be enabled by default. There may be options available to allow you to experiment with WebXR even if you don't have a compatible system, however.</p>
<h4 id="WebXR_polyfill">WebXR polyfill</h4>
<p>The team designing the WebXR specification has published a <a href="https://github.com/immersive-web/webxr-polyfill">WebXR polyfill</a> which you can use to simulate WebXR on browsers which don't have support for the WebXR APIs. If the browser supports the older <a href="/en-US/docs/Web/API/WebVR_API">WebVR API</a>, that is used. Otherwise, the polyfill falls back to an implementation which uses Google's Cardboard VR API.</p>
<p>The polyfill is maintained alongside the specification, and is kept up to date with the specification. Additionally, it is updated to maintain compatiblity with browsers as their support for WebXR and other technologies related to it and to the implementation of the polyfill change over time.</p>
<p>Be sure to read the readme carefully; the polyfill comes in several versions depending on what degree of compatibility with newer JavaScript features your target browsers include.</p>
<h4 id="WebXR_API_Emulator_extension">WebXR API Emulator extension</h4>
<p>The <a href="https://mixedreality.mozilla.org/">Mozilla WebXR team</a> has created a <a href="https://blog.mozvr.com/webxr-emulator-extension/">WebXR API Emulator</a> browser extension, compatible with both Firefox and Chrome, which emulates the WebXR API, simulating a variety of compatible devices such as the HTC Vive, the Oculus Go and Oculus Quest, Samsung Gear, and Google Cardboard. With the extension in place, you can open up a developer tools panel that lets you control the position and orientation of the headset and any hand controllers, as well as button presses on the controllers.</p>
<p>While somewhat awkward compared to using an actual headset, this makes it possible to experiment with and developer WebXR code on a desktop computer, where WebXR isn't normally available. It also lets you perform some basic testing before taking your code to a real device. Be aware, however, that the emulator does not yet completely emulate all of the WebXR API, so you may run into problems you're not expecting. Again, carefully read the readme file and make sure you're aware of the limitations before you begin.</p>
<div class="blockIndicator note">
<p><strong>Important:</strong> You should <em>always</em> test your code on actual AR and/or VR hardware before releasing or shipping a product! Emulated, simulated, or polyfilled environments are <em>not</em> an adequate substitute for actual testing on physical devices.</p>
</div>
<p>Download the WebXR API Emulator for your supported browser below:</p>
<ul>
<li><a href="https://chrome.google.com/webstore/detail/webxr-api-emulator/mjddjgeghkdijejnciaefnkjmkafnnje">Google Chrome</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/webxr-api-emulator/">Mozilla Firefox</a></li>
</ul>
<p>The <a href="https://github.com/MozillaReality/WebXR-emulator-extension">source code for the extension</a> is also available on GitHub.</p>
<h2 id="调用_WebXR_API">调用 WebXR API</h2>
<p>To gain access to the WebXR API within the context of a given window, use the {{domxref("navigator.xr")}} property.</p>
<dl>
<dt>{{domxref("navigator.xr")}} {{ReadOnlyInline}}</dt>
<dd>This property, added to the {{domxref("Navigator")}} interface, returns the {{domxref("XR")}} object through which the WebXR API is exposed. If this property is missing or <code>null</code>, WebXR is not available.</dd>
</dl>
<h2 id="WebXR_接口">WebXR 接口</h2>
<dl>
<dt>{{DOMxRef("XR")}}</dt>
<dd>The {{domxref("Navigator.xr", "navigator.xr")}} property returns the window's instance of {{domxref("XR")}}, which is the mechanism by which your code accesses the WebXR API. Using the <code>XR</code> interface, you can create {{domxref("XRSession")}}s to represent actual AR and/or VR sessions.</dd>
<dt>{{DOMxRef("XRFrame")}}</dt>
<dd>While presenting an XR session, the state of all tracked objects which make up the session are represented by an <code>XRFrame</code>. To get an <code>XRFrame</code>, call the session's {{domxref("XRSession.requestAnimationFrame", "requestAnimationFrame()")}} method, providing a callback which will be called with the <code>XRFrame</code> once available. Events which communicate tracking states will also use <code>XRFrame</code> to contain that information.</dd>
<dt>{{DOMxRef("XRRenderState")}}</dt>
<dd>Provides a set of configurable properties which change how the imagery output by an <code>XRSession</code> is composited. These properties include the range of distances from the viewer within which content should be rendered, the vertical field of view (for inline presentations), and a reference to the {{domxref("XRWebGLLayer")}} being used as the target for rendering the scene prior to it being presented on the XR device's display or displays.</dd>
<dt>{{DOMxRef("XRSession")}}</dt>
<dd>Provides the interface for interacting with XR hardware. Once an <code>XRSession</code> is obtained from {{domxref("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.</dd>
<dt>{{DOMxRef("XRSpace")}}</dt>
<dd><code>XRSpace</code> 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 <code>XRSpace</code> at the time at which a particular {{domxref("XFrame")}} takes place. The space's coordinate system has its origin at the a given physical position.</dd>
<dt>{{DOMxRef("XRReferenceSpace")}}</dt>
<dd>A subclass of {{domxref("XRSpace")}} which is used to identify a spatial relationship in relation to the user's physical emvironment. The <code>XRReferenceSpace</code> coordinate system is expected to remain unchanged through the lifespan of the {{domxref("XRSession")}}.The world has no boundaries and extends infinitely in every direction.</dd>
<dt>{{DOMxRef("XRBoundedReferenceSpace")}}</dt>
<dd><code>XRBoundedReferenceSpace</code> extends the {{domxref("XRReferenceSpace")}} coordinate system to further include support for a finite world with set boundaries. Unlike <code>XRReferenceSpace</code>, the origin must be located on the floor (that is, <em>y</em> = 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.</dd>
<dt>{{DOMxRef("XRView")}}</dt>
<dd>Represents a single view into the XR scene for a particular frame. Each <code>XRView</code> 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.</dd>
<dt>{{DOMxRef("XRViewport")}}</dt>
<dd>Describes a viewport. A viewport is a rectangular portion of a graphic surface.</dd>
<dt>{{DOMxRef("XRRigidTransform")}}</dt>
<dd>A transform defined using a position and orientation in the virtual space's coordinate system as described by the {{domxref("XRSpace")}}.</dd>
<dt>{{DOMxRef("XRPose")}}</dt>
<dd>Describes a position and orientation in space relative to an {{domxref("XRSpace")}}.</dd>
<dt>{{DOMxRef("XRViewerPose")}}</dt>
<dd>Based on {{domxref("XRPose")}}, <code>XRViewerPose</code> specifies the state of a viewer of the WebXR scene as indicated by the XR device. Included is an array of {{domxref("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.</dd>
<dt>{{DOMxRef("XRInputSource")}}</dt>
<dd>Represents any input device the user can use to perform targeted actions within the same virtual space as the viewer. Input sources may include devices such as hand controllers, optical tracking systems, and other devices which are explicitly associated with the XR device. Other input devices such as keyboards, mice, and gamepads are not presented as <code>XRInputSource</code> instances.</dd>
<dt>{{DOMxRef("XRWebGLLayer")}}</dt>
<dd>A layer which serves as a <a href="/en-US/docs/Web/API/WebGL_API">WebGL</a> frame buffer into which a scene's view is rendered. Using WebGL to render the scene gains substantial performance benefits due to graphics acceleration.</dd>
</dl>
<h3 id="事件接口">事件接口</h3>
<p>The following interfaces are used to represent the events used by the WebXR API.</p>
<dl>
<dt>{{domxref("XRInputSourceEvent")}}</dt>
<dd>Sent when the state of an {{domxref("XRInputSource")}} changes. This can happen, for example, when the position and/or orientation of the device changes, or when buttons are pressed or released.</dd>
<dt>{{domxref("XRInputSourcesChangeEvent")}}</dt>
<dd>Sent to indicate that the set of available input sources has changed for the {{domxref("XRSession")}}.</dd>
<dt>{{domxref("XRReferenceSpaceEvent")}}</dt>
<dd>Sent when the state of an {{domxref("XRReferenceSpace")}} changes.</dd>
<dt>{{domxref("XRSessionEvent")}}</dt>
<dd>Sent to indicate that the state of an {{domxref("XRSession")}} has changed. For example, if the position and/or orient</dd>
</dl>
<h2 id="WebGL_API_的扩展">WebGL API 的扩展</h2>
<p>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.</p>
<dl>
<dt>{{domxref("WebGLRenderingContextBase.makeXRCompatibile()")}}</dt>
<dd>Configures the WebGL context to be compatible with WebXR. If the context was not initially created with the {{domxref("WebGLContextAttributes.xrCompatible", "xrCompatible")}} property set to <code>true</code>, you must call <code>makeXRCompatible()</code> prior to attempting to use the WebGL context for WebXR rendering. Returns a {{jsxref("promise")}} which resolves once the context has been prepared, or is rejected if the context cannot be configured for use by WebXR.</dd>
</dl>
<h2 id="指南与教程">指南与教程</h2>
<p>The following guides and tutorials are a great resource to learn how to comprehend WebXR and the underlying 3D and VR/AR graphics concepts.</p>
<dl>
<dt><a href="/en-US/docs/Web/API/WebXR_Device_API/Fundamentals">Fundamentals of WebXR</a></dt>
<dd>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.</dd>
<dt><a href="/en-US/docs/Web/API/WebGL_API/Matrix_math_for_the_web">Matrix math for the web</a></dt>
<dd>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.</dd>
<dt><a href="/en-US/docs/Web/API/WebXR_Device_API/Geometry">Geometry and reference spaces in WebXR</a></dt>
<dd>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.</dd>
<dt><a href="/en-US/docs/Web/API/WebXR_Device_API/Spatial_tracking">Spatial tracking in WebXR</a></dt>
<dd>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, views (and viewers), and poses.</dd>
<dt><a href="/en-US/docs/Web/WebXR_Device_API/Rendering">Rendering and the WebXR frame loop</a></dt>
<dd>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.</dd>
<dt><a href="/en-US/docs/API/WebXR_Device_API/Movement_and_motion">Movement, orientation, and motion: A WebXR example</a></dt>
<dd>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.</dd>
<dt><a href="/en-US/docs/Web/API/WebXR_Device_API/Inputs">Inputs and input sources</a></dt>
<dd>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.</dd>
<dt><a href="/en-US/docs/Web/WebXR Device API/Gamepads">Supporting gamepads in WebXR applications</a></dt>
<dd>WebXR implements the Gamepad API to allow gamepads connected to the XR device to be used as input controls. This guide describes how this works.</dd>
</dl>
<h2 id="规范">规范</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName("WebXR")}}</td>
<td>{{Spec2("WebXR")}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("api.Navigator.xr")}}</p>
<h2 id="亦可查看">亦可查看</h2>
<ul>
<li><a href="/en-US/docs/Web/Guide/Graphics">Graphics on the web</a></li>
<li><a href="/en-US/docs/Learn/JavaScript/Client-side_web_APIs/Drawing_graphics">Drawing graphics</a></li>
<li><a href="/en-US/docs/Web/API/WebGL_API">WebGL API</a>: Accelerated 2D and 3D graphics on the web</li>
<li><a href="/en-US/docs/Web/API/Canvas_API">Canvas API</a>: 2D drawing for the web</li>
<li><a href="/en-US/docs/Web/API/Canvas_API/Tutorial">Canvas tutorial</a></li>
</ul>
|