-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (39 loc) · 1015 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html>
<head>
<title>TP</title>
<meta charset="utf-8">
<style>
body {
overflow: hidden;
margin: 0px;
}
#bottombar{
position: absolute;
bottom: 0px;
margin: 0px;
width: 100%;
}
progress {
width: 80%;
}
#percentage {
color: white;
}
#errormessage{
color: red;
}
</style>
</head>
<body>
<div id="bottombar">
<div id="errormessage"></div>
<progress id="progressbar" value=0 max=10000></progress>
<span id="percentage"></span>
</div>
<script src="js/three.min.js"></script>
<script src="js/OrbitControls.js"></script>
<script src="js/obja.js"></script>
<script src="js/main.js"></script>
</body>
</html>