-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (113 loc) · 3.25 KB
/
Copy pathindex.html
File metadata and controls
121 lines (113 loc) · 3.25 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no"
/>
<title>ShapeDiver Viewer v2</title>
<!-- ShapeDiver Viewer -->
<script
defer
src="https://viewer.shapediver.com/v2/2.20.2/sdv.concat.min.js"
></script>
<link
rel="stylesheet"
type="text/css"
href="https://viewer.shapediver.com/v2/2.20.2/sdv.css"
/>
<!-- ShapeDiver Viewer Controls and Export Modal Dialog Dependencies -->
<!-- UIkit CSS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.1.5/css/uikit.min.css"
integrity="sha256-sO/kKFCHPL4rhYHDyHC2dwGlaIBttifOfQ0ZaGLAheo="
crossorigin="anonymous"
/>
<!-- UIkit JS -->
<script
defer
src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.1.5/js/uikit.min.js"
integrity="sha256-jN++RwBoYassp9qTuZDfQuptszFdL1Pm4dKZWS5KjjY="
crossorigin="anonymous"
></script>
<script
defer
src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.1.5/js/uikit-icons.min.js"
integrity="sha256-6pktS+jePPdXx9oCn8r4hS5jR1eq0Ry7vbifYtG0LDU="
crossorigin="anonymous"
></script>
<!-- Dat.gui -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.7.6/dat.gui.min.js"></script>
<!-- Application bundle -->
<script src="main.js"></script>
<style>
/* UIkit pollutes the background globally, we overrule this */
html {
background: transparent;
}
#info-top {
position: absolute;
top: 0px;
width: 250px;
padding: 5px;
font-family: Monospace;
font-size: 13px;
text-align: left;
font-weight: bold;
color: grey;
z-index: 1;
}
#info-bottom {
position: absolute;
bottom: 0px;
padding: 5px;
font-family: Monospace;
font-size: 13px;
text-align: left;
font-weight: bold;
color: grey;
z-index: 1;
}
</style>
</head>
<body style="background-color: transparent;">
<!-- Divs for info -->
<div id="info-top"></div>
<div id="info-bottom"></div>
<!-- ShapeDiver Viewer Main Container -->
<div
id="sdv-container"
class="shapediver-container-flex shapediver-container-fullsize"
sdv-fullscreen="true"
>
<!-- ShapeDiver Viewer Settings Controls Container -->
<div
id="sdv-container-settings"
class="shapediver-settings-flex"
style="display: none;"
></div>
<!-- ShapeDiver Viewer Viewport Container -->
<div
class="shapediver-viewport-flex"
style="box-shadow: inset 0px 0px 0px 0px #ff0000;"
>
<div
id="sdv-container-viewport"
class="shapediver-container-fullsize"
style="opacity: 0;"
logginglevel="0"
messagelogginglevel="2"
></div>
<!-- The loading icon will be created here -->
</div>
<!-- ShapeDiver Viewer Parameter Controls Container -->
<div
id="sdv-container-controls"
class="shapediver-controls-flex"
style="display: none;"
></div>
</div>
</body>
</html>