-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<style>
html, body {
width: 100%;
height: 100%;
margin: 0;
}
#container {
background: #999;
width: 100%;
height: 100%;
}
</style>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<script src="js/jquery-custom.js"></script>
<script src="js/three.min.js"></script>
<script src="js/stats.min.js"></script>
<script src="js/particle-viewer.core.js"></script>
<script src="js/particle-viewer.settings.js"></script>
<script src="js/particle-viewer.renderer.js"></script>
<script src="js/particle-viewer.molecules.js"></script>
<script src="js/controls/TrackballControls.js"></script>
<script src="js/animation-generator.js"></script>
</head>
<body>
<div id="container"></div>
</body>
<script src="js/particle-viewer.init.js"></script>
</html>