-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·29 lines (28 loc) · 914 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>FXOS panorama viewer</title>
<meta name="viewport" content="width=device-width">
<script type="text/javascript" src="js/app.js" defer></script>
<style>
html, body{
width:100%;height:100%;overflow:hidden;margin:0;padding:0;
}
body{
padding: 1em;
background-color:#c00;
background-repeat:no-repeat;
background-position: center bottom;
font-family: sans-serif;
text-shadow: 0px 1px 1px white;
}
</style>
</head>
<body>
<div id = "orientation">
<p>Orientation: <span id="alpha">---</span> <span id="gamma">---</span></p>
</div>
</body>
<!-- Demo photo by DAVID ILIFF. License: CC-BY-SA 3.0 -->
</html>