-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
38 lines (29 loc) · 973 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
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="agents.css">
<title>Primordial Particle System</title>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="./agents.js"></script>
<meta name="viewport" content="width=320, initial-scale=1, user-scalable = no">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" href="touch-icon.png">
<meta name="apple-mobile-web-app-title" content="PPS">
<style>
* { padding: 0; margin:0;}
body {
font-family: 'Open Sans', sans-serif;
background-color:#111;
}
</style>
</head>
<body onload = "initSimulation();">
<div id="simulation">
<div id="buttons">
<a id="pause" onclick="pauseButton()">pause</a>
<a id="reset" onclick="resetButton()">reset</a>
<a id="slower" onclick="slowerButton()">slower</a>
<a id="faster" onclick="fasterButton()">faster</a>
</div>
<canvas id="agents"></canvas>
</div>
</body>