-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (64 loc) · 2.25 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<html>
<head>
<title>360 Image Viewer</title>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=no" />
<meta charset="utf-8">
<!-- The Viewer CSS -->
<link rel="stylesheet" href="https://developer.api.autodesk.com/modelderivative/v2/viewers/style.min.css?v=v3.1.*" type="text/css">
<link rel="stylesheet" type="text/css" href="/photo-sphere-viewer/dist/photo-sphere-viewer.min.css"></link>
<style>
body {
margin: 0;
}
#MyViewerDiv {
width: 100%;
height: 100%;
margin: 0;
background-color: #F0F8FF;
}
#MyNextButton {
position: absolute;
top: 5px;
left: 5px;
z-index: 1;
font-size: 40px;
cursor: pointer;
}
.main-content {
display: flex;
}
#thumbnail-container {
display: flex;
flex-direction: column;
margin-right: 5px;
width: 200px;
height: 100%;
}
#thumbnail-container div {
flex: 1;
margin: 1px;
}
#viewer360 {
width: 100%;
background-color: rgb(206, 186, 186);
}
</style>
</head>
<body>
<div class="main-content">
<div id="thumbnail-container"></div>
<div id="viewer360"></div>
<div id="MyViewerDiv"></div>
</div>
</body>
<script src="/js/three.min.js"></script>
<script src="/js/uEvent.min.js"></script>
<script src="/d.js/lib/D.js"></script>
<script src="/dot/doT.min.js"></script>
<script src="/photo-sphere-viewer/dist/photo-sphere-viewer.min.js"></script>
<script src="https://developer.api.autodesk.com/modelderivative/v2/viewers/three.min.js?v=v3.1.*"></script>
<script src="https://developer.api.autodesk.com/modelderivative/v2/viewers/viewer3D.min.js?v=v3.1.*"></script>
<script src="/js/main.js"></script>
<script type="text/javascript">
</script>
</html>