-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (31 loc) · 999 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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Times Table Visualization</title>
<link rel="stylesheet" href="css/styles.css" />
<style>
body {
padding: 0;
margin: 0;
}
</style>
<script src="js/p5.min.js"></script>
<script src="js/circle.js"></script>
<script src="js/sketch.js"></script>
</head>
<body>
<div class="menu">
<span class="left">
Number of Times Table Circles: <input id="numberOfCircles" type="number" value="10" onchange="configChange()" />
Circle Division Density: <input id="modularNumber" type="number" value="200" onchange="configChange()" />
<a style="margin-left:10px" href="./html/animate.html">Animate</a>
<a style="margin-left:10px" href="./html/pickYourNumber.html">Pick your favourite times number</a>
</span>
<span class="credit">By Murlidhar Varma</span>
</div>
<div id="canvas-container">
</div>
</body>
</html>