-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (37 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Spatial Navigation</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="orientation-wrap">
<div class="orientation-wrap-inner clearfix">
<!-- Alpha (0 to 360) -->
<div class="orientation-parameter">
<h6 class="orientation-title">Alpha</h6>
<span class="orientation-value" id="alpha">n/a</span>
</div>
<!-- Beta (-180 to 180) -->
<div class="orientation-parameter">
<h6 class="orientation-title">Beta</h6>
<span class="orientation-value" id="beta">n/a</span>
</div>
<!-- Gamma (-90 to 90) -->
<div class="orientation-parameter">
<h6 class="orientation-title">Gamma</h6>
<span class="orientation-value" id="gamma">n/a</span>
</div>
</div> <!-- orientation-wrap-inner -->
</div> <!-- orientation-wrap -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.3.min.js"><\/script>')</script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>