-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (24 loc) · 836 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
<!DOCTYPE html>
<html>
<head>
<title>Random Walks Project</title>
<meta charset="utf-8" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.1/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.1/addons/p5.dom.min.js"></script>
<script src="sketch.js"></script>
<!-- <link rel="stylesheet" type="text/css" href="style.css"> -->
</head>
<body>
<center id="center" style="margin: 10px;">
<button onclick="nextStep()">Next Step</button>
<button onclick="if(step>0){step -= 1}">Previous Step</button>
<button onclick="step=0">Reset Simulation</button>
<nobr id="stepNum">Step Number: 0</nobr>
<nobr> </nobr>
<nobr id="descriptor"></nobr>
<br>
</center>
<!-- <div></div> -->
<br>
</body>
</html>