-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.htm
More file actions
26 lines (19 loc) · 757 Bytes
/
index.htm
File metadata and controls
26 lines (19 loc) · 757 Bytes
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Bouncy balls</title>
</head>
<body>
<style>
</style>
<div style="margin-left:auto; margin-right: auto; width: 600px;">
<canvas style="border: 1px solid black;" width="600" height="500" id="canvas"></canvas>
<button onclick="startLife()">Start life</button>
<br>
<button onclick="pauseLife()">Pause life</button>
</div>
</body>
<script src="utils.js"></script>
<script src="animationEngine.js"></script>
<script src="main.js"></script>
</html>