-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVR_index.html
63 lines (63 loc) · 2.18 KB
/
VR_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
62
63
!<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SP WebXR VR examples</title>
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" />
</head>
<!-- <script src="https://use.fontawesome.com/811f10b056.js"></script> -->
<script type="module" src="./index.js"></script>
<body>
<div id="background-pentagon-net"></div>
<div class="menu-wrapper">
<div class="menu-wrapper-links">
<div id="menu-wrapper-links-aboutProject" class="menu-wrapper-links-link">
About Project
</div>
<div id="menu-wrapper-links-WebVR" class="menu-wrapper-links-link">
Virtual Reality
</div>
<div id="menu-wrapper-links-WebAR" class="menu-wrapper-links-link">
Augmented Reality
</div>
</div>
<div class="menu-wrapper-copyrights">
mateuszorylski@gmail.com
<p id="app-version"></p>
</div>
</div>
<div id="vrexamples-component" class="component">
<h1 id="vrexamples-header" class="component-header">Virtual Reality WebXR Examples</h1>
<div id="vrexamples-holder" class="component-holder">
<div id="example-one" class="component-holder-examples">
3D city model viewer
<button id="btn-enterVR-one" class="btn-enterVr">
<i class="fas fa-vr-cardboard"></i> Enter VR
</button>
</div>
<div id="example-two" class="component-holder-examples">
Virtual MPZP Poznan
<button id="btn-enterVR-two" class="btn-enterVr">
<i class="fas fa-vr-cardboard"></i> Enter VR
</button>
</div>
<div id="example-three" class="component-holder-examples">
Participation and virtual walk <br />
Park Bambrów Poznańskich <br />
<button id="btn-enterVR-three" class="btn-enterVr">
<i class="fas fa-vr-cardboard"></i> Enter VR
</button>
</div>
<div id="example-four" class="component-holder-examples">
Participation and virtual walk <br />
Stare Miasto <br />
<button id="btn-enterVR-four" class="btn-enterVr">
<i class="fas fa-vr-cardboard"></i> Enter VR
</button>
</div>
</div>
</div>
</body>
</html>