-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (31 loc) · 1.25 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
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE HTML>
<html>
<head>
<title>Something special</title>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="./slider.css">
<link rel="stylesheet" href="./styles.css">
<script src="./draw.js"></script>
<script src="./handler.js"></script>
</head>
<body>
<div class="container">
<canvas width="100" height="100" id="canvas"></canvas>
<div class="inputs">
<div class="input">
<span>Points: </span>
<input id="dots-input" type="range" min="2" max="1000" step="1" oninput="nrOfDotsChanged(value)" onchange="nrOfDotsChanged(value)"/>
<span id="dots"></span>
</div>
<div class="input">
<span>Multiplier: </span>
<input id="multiplier-input" type="range" min="2" max="1000" step="1" oninput="multiplierChanged(value)" onchange="multiplierChanged(value)"/>
<span id="multiplier"></span>
</div>
</div>
</div>
<script>
init();
</script>
</body>
</html>