-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 880 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 lang="en">
<head>
<title>Sierpinski Triangle Simulator</title>
</head>
<link rel="stylesheet" type="text/css" href="./style.css">
<body>
<label id="counter" class="counter">0</label>
<br>
<button class="btn btn-primary" id="addButton">Add</button>
<br class="mobile-only">
<br>
<div class="centered-div">
<label class="regular-text">Automatic:</label>
<input type="checkbox" id="chechbox">
</div>
<div class="centered-div">
<input type="number" disabled>
<input type="range" id="slider" min="1" max="100" value="1" oninput="inputResponse('slider','step')">
<input type="number" id="step" oninput="inputResponse('step', 'slider')" value="1" max="100">
</div>
<label class="small-text">Increment or points per second</label>
<br>
<canvas id="canvas">Your browser does not support the canvas element.</canvas>
</body>
<script src="./script.js"></script>
</html>