-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
48 lines (43 loc) · 1.77 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WebXR Layer Sample</title>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<div class="container" style="display: none">
<main class="main">
<h1 class="title">WebXR Layer Samples</h1>
<div class="grid">
<a href="/simple-scene" class="card">
<h3>Simple VR</h3>
<p>A simple VR scene</p>
</a>
<a href="/hand-input" class="card">
<h3>Hand Input</h3>
<p>A simple example illustrating hands as controller</p>
</a>
<a href="/controller-interaction" class="card">
<h3>Controller Interaction</h3>
<p>A simple VR scene showing controller interactions</p>
</a>
<a href="/simple-equirect-layer" class="card">
<h3>Simple Equirect Layer</h3>
<p>A simple equirect layer displaying a stereo video</p>
</a>
<a href="/multiple-layers" class="card">
<h3>Multiple Layers</h3>
<p>
An equirect layer backdrop with a quad layer,
displaying stereo video
</p>
</a>
</div>
</main>
</div>
</body>
<script type="module" src="/index.js"></script>
</html>