-
Notifications
You must be signed in to change notification settings - Fork 40
/
index.html
47 lines (47 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0, shrink-to-fit=no">
<title>webVR-helloworld</title>
<style>
* {
margin: 0;
padding: 0;
}
html,body {
height: 100%;
}
body {
font-size: 14px;
font-family: "Arial","Microsoft YaHei","黑体",sans-serif;
}
.wrap {
width: 50%;
margin: 24px auto;
}
</style>
</head>
<body>
<article class="wrap">
<h2>教程</h2>
<ul>
<li><a href="https://zhuanlan.zhihu.com/p/25567905">WebVR - 标准入门</a></li>
<li><a href="https://zhuanlan.zhihu.com/p/28324884">WebVR - 深度剖析</a></li>
<li><a href="https://zhuanlan.zhihu.com/p/30630559">WebVR - GamePad使用</a></li>
<li><a href="https://zhuanlan.zhihu.com/p/32748737">WebVR - 3D音频</a></li>
<li><a href="https://zhuanlan.zhihu.com/p/28324884">WebVR - gaze事件</a></li>
<li><a href="https://zhuanlan.zhihu.com/p/29888652">WebVR - Webpack单页面工程</a></li>
</ul>
</article>
<article class="wrap">
<h2>示例</h2>
<ul>
<li><a href="examples/cardboard2.html">WebVR - Gaze input</a></li>
<li><a href="examples/3d-audio.html">WebVR - Spatial audio</a></li>
<li><a href="examples/voice-interaction.html">WebVR - Physical world</a></li>
<li><a href="examples/physics.html">WebVR - Physical world</a></li>
</ul>
</article>
</body>
</html>