-
Notifications
You must be signed in to change notification settings - Fork 55
/
index.html
23 lines (23 loc) · 911 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
<!doctype html>
<html>
<head>
<title>Recursion Toy</title>
<meta name="author" content="Justin Windle">
<meta name="copyright" content="© 2011 Justin Windle">
<meta name="description" content="Recursion Experiment in JavaScript">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<ul id="output">
<li>Click to spawn</li>
<li class="branchCount"></li>
<li>Get the <a href="https://github.com/soulwire/Recursion-Toy" target="_blank">Code</a></li>
</ul>
<canvas id="canvas" width="500" height="500"></canvas>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script src="js/lib/DAT.GUI.min.js"></script>
<script src="js/lib/RAF.js"></script>
<script src="js/recursion.js"></script>
</body>
</html>