-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
72 lines (61 loc) · 1.64 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
66
67
68
69
70
71
72
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<title>Visualization of Kepler Planets</title>
<style>
.thumb {
height: 75px;
border: 1px solid #000;
margin: 10px 5px 0 0;
}
</style>
<style>
#progress_bar {
margin: 10px 0;
padding: 3px;
border: 1px solid #000;
font-size: 14px;
clear: both;
opacity: 0;
-moz-transition: opacity 1s linear;
-o-transition: opacity 1s linear;
-webkit-transition: opacity 1s linear;
}
#progress_bar.loading {
opacity: 1.0;
}
#progress_bar .percent {
background-color: #99ccff;
height: auto;
width: 0;
}
</style>
<!-- <style>
Full screen canvas styles
body {
margin: 0;
}
canvas {
width: 100%;
height: 100%;
display: block;
}
</style> -->
<!-- load libraries -->
<script src = "js/lib/jquery-3.2.1.min.js" ></script>
<script src = "js/lib/three.min.js" ></script>
<script src = "js/lib/TrackballControls.js"></script>
<script src ="js/main.js" ></script>
<script src ="js/parser.js" ></script>
<script src ="js/data.js" ></script>
<script src ="js/psystem.js" ></script>
</head>
<body onload="main()">
<!--<button onclick="render()">Render</button>
<canvas id ="example" width ="800" height ="800">
Please use a browser that supports "canvas"
</canvas > -->
</body>
</html>