-
Notifications
You must be signed in to change notification settings - Fork 192
/
Copy pathindex.html
61 lines (52 loc) · 1.73 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
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<title>three.js / examples</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
@font-face {
font-family: 'inconsolata';
src: url('examples/files/inconsolata.woff') format('woff');
font-weight: normal;
font-style: normal;
}
* {
box-sizing: border-box;
}
html {
height: 100%;
}
body {
background-color: #ffffff;
margin: 0px;
height: 100%;
color: #555;
font-family: 'inconsolata';
font-size: 15px;
line-height: 18px;
overflow: hidden;
}
</style>
</head>
<body>
<ul>
<li><a href="examples/vr_nobox.html">vr_nobox</a></li>
<li><a href="examples/vr_cube.html">vr_cube</a></li>
<li><a href="examples/vr_sphere.html">vr_sphere</a></li>
<li><a href="examples/camera_event_example.html">camera_event_example</a></li>
<li><a href="examples/mouse_event_example.html">mouse_event_example</a></li>
<li><a href="examples/asteroid_view.html">asteroid_view</a></li>
<li><a href="examples/asteroid_view1.html">asteroid_view1</a></li>
<li><a href="examples/cubic_projection.html">cubic_projection</a></li>
<li><a href="examples/cubemap_dynamic.html">cubemap_dynamic</a></li>
<li><a href="examples/vr_slice_pano.html">vr_slice_pano</a></li>
<li><a href="examples/auto_convert.html">auto_convert_vr_sphere</a></li>
<li><a href="examples/vr_video.html">vr_video</a></li>
<li><a href="examples/ar1.html">ar1</a> </li>
<li><a href="examples/webvr_earth.html">VR earth</a></li>
<li><a href="examples/webvr_obj.html">VR OBJ</a></li>
<li><a href="examples/devices.html">devices</a></li>
</ul>
</body>
</html>