forked from francois2metz/360
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (42 loc) · 1.63 KB
/
index.html
File metadata and controls
47 lines (42 loc) · 1.63 KB
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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Midlakes 360 Gallery</title>
<link rel="stylesheet" href="/bootstrap.min.css"/>
<link rel="stylesheet" href="/pannellum.css"/>
<link rel="stylesheet" href="/style.css"/>
<script type="text/javascript" src="/pannellum.js"></script>
</head>
<body>
<div class="d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="masthead d-flex flex-row align-items-center mb-4 text-center">
<h3 class="masthead-brand m-0"><a href="/">Midlakes</a></h3>
<h4 class="flex-grow-1 m-0" id="filename"></h4>
<div id="navigation">
<a href="/exterior-deck.html">Exterior Deck</a> |
<a href="/exterior-grounds.html">Exterior Grounds</a> |
<a href="/exterior-pier.html">Exterior Pier</a> |
<a href="/interior-upstairs.html">Interior Upstairs</a> |
<a href="/interior-main.html">Interior Main</a> |
<a href="/interior-downstairs.html">Interior Downstairs</a>
</div>
</header>
<main role="main" class="d-flex flex-column flex-grow-1 align-items-center justify-content-center text-center">
<div id="panorama"></div>
<script>
pannellum.viewer('panorama', {
"type": "equirectangular",
"panorama": "/images/exterior-pier/ext-pier-04.jpeg",
"autoLoad": true,
"autoRotate": -3,
"pitch": 15,
"yaw": -150,
"hfov": 150
});
</script>
</main>
</div>
</body>
</html>