-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (63 loc) · 2.02 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="shortcut icon" href="/favicon.ico" />
<title>popullution alpha 0.01</title>
<script type="text/javascript" src="include/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="include/Three.js"></script>
<script type="text/javascript" src="include/Stats.js"></script>
<script type="text/javascript" src="include/dat.gui.js"></script>
<style type="text/css">
#container {
background-color: #000;
position: absolute;
top: 0px;
left: 0px;
z-index: 0;
width: 100%;
height: 100%;
}
#statsContainer {
position: absolute;
top: 0px;
left: 0px;
z-index:1;
}
#census, #message, #stats {
position: absolute;
font-size: 40px;
top: 0px;
left: 150px;
font-family: Helvetica;
z-index: 1;
color: #fff;
}
#census:before {
content: "#";
font-size: 14px;
}
#message {
left: 300px;
}
#stats {
left: 460px;
}
body {
overflow: hidden;
}
</style>
</head>
<body>
<div id="statsContainer"></div>
<div id="container"></div>
<div id="census"></div>
<div id="message"></div>
<div id="stats"></div>
<script src="CellList.js"></script>
<script src="kcolors.js"></script>
<script src="addEventListeners.js"></script>
<script src="Settings.js"></script>
<script src="popullution.js"></script>
</body>
</html>