-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 1.17 KB
/
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
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/addons/p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
</head>
<body>
<h2 class="title fade-in">Spirographic Harmony</h2>
<div class="controller controller-layout">
<div id="resetbtn" class="btn space"> RESET</div>
<div id="colorbtn" class="btn space"> CHANGE COLOR</div>
<div id="speedbtn" class="controller"><span class="space">SPEED:</span><span><input id="speedslider" type='range' min="1" max="20" value="8"></span></div>
</div>
<div class="about-text">
<p style="text-align:center;">
This visualization is for motivating kids towards Geometry and Mathematics.
<br>You can interact with it by adjusting its color and speed.
<br>Made with ❤️ by Rudrajit Choudhuri 🦋</a>
</p>
</div>
<script src="sketch.js"></script>
</body>
</html>