-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (31 loc) · 1023 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
36
37
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bezier curves exercise</title>
<meta name="description" content="Bezier curves exercise">
<meta name="author" content="KMB">
<link rel="stylesheet" href="index.css">
</head>
<body>
<canvas id="myCanvas"></canvas>
<canvas id="pointsCanvas"></canvas>
<div id="controls">
<div>
<div>Number of curves</div>
<input type="range" min="1" max="100" value="3" class="slider" id="numberOfCurves">
<span id="numberOfCurvesNumber">3</span>
</div>
<div>
<div>Number of elements</div>
<input type="range" min="1" max="100" value="3" class="slider" id="numberOfPoints">
<span id="numberOfPointsNumber">3</span>
</div>
</div>
<div id="curvesProgress" class="progressInfo">
<div class="title">Plot progress</div>
<div class="meter"></div>
</div>
<script src="index.js"></script>
</body>
</html>