-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 946 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 946 Bytes
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 lang="en">
<head>
<meta charset="UTF-8">
<title>Fractal tree</title>
<link rel="stylesheet" href="styles/styles.css">
<script src="scripts/main.js"></script>
</head>
<body>
<canvas id="myCanvas" width="500" height="500">Your browser doesn't support canvas, please upgrade it.</canvas>
<div class="container">
<div class="input-container">
<label for="angle">Angle : </label>
<input id="angle" value="0.39" type="range" min="0" max="3.15" step="0.01" oninput="draw()">
</div>
<div class="input-container">
<label for="lenght">Length</label>
<input id="lenght" value="118" type="range" min="10" max="170" step="0.01" oninput="draw()">
</div>
<div class="input-container">
<label for="reducer">Reducer : </label>
<input id="reducer" value="0.7" type="range" min="0.5" max="0.75" step="0.01" oninput="draw()">
</div>
</div>
</body>
</html>