-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (39 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<link rel="stylesheet" href="node_modules/photo-sphere-viewer/dist/photo-sphere-viewer.min.css">
<style>
html, body {
width: 100%;
height: 100%;
}
#photosphere {
width: 100%;
height: 100%;
overflow: hidden;
margin: 0;
padding: 0;
}
.psv-button.custom-button {
font-size: 22px;
line-height: 20px;
}
</style>
<!-- Use Omnitone from installed node_modules/ -->
<script src="node_modules/omnitone/build/omnitone.js"></script>
<!-- Photo-Sphere-Viewer -->
<script src="node_modules/three/build/three.min.js"></script>
<script src="node_modules/d.js/lib/D.min.js"></script>
<script src="node_modules/uevent/uevent.min.js"></script>
<script src="node_modules/dot/doT.min.js"></script>
</head>
<body>
<div id="photosphere"></div>
<script src="js/photo-sphere-viewer.js"></script>
<!-- Main Script -->
<script src="js/index.js"></script>
</body>
</html>