generated from mathias-wilke/javascript-canvas-fun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<title>JavaScript Canavas Fun</title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="stylesheet" href="css/canvas-fun.css">
</head>
<body>
<div id="menue">
<ul>
<li><a href="https://www.mathiaswilke.de">mathiaswilke.de</a></li>
<li><a href="https://www.mathiaswilke.de/pythagoras">Pythagoras</a></li>
<li><a href="https://www.mathiaswilke.de/sierpinski">Sierpinski</a></li>
<li><a href="https://www.mathiaswilke.de">V-Tree</a></li>
</ul>
</div>
<canvas id="screen" width="800px" height="450px"></canvas>
<div class="slidecontainer">
<p>SETTINGS</p>
<p>Recursion Depth</p>
<input type="range" min="1" max="12" value="6" class="slider" id="recursion">
<p>Angle</p>
<input type="range" min="0" max="90" value="29" class="slider" id="angle">
<p>Size</p>
<input type="range" min="1" max="120" value="110" class="slider" id="length">
<p>Color</p>
<label class="switch">
<input checked="true" type="checkbox" id="colors">
<span class="slide-switch round"></span>
</label>
</div>
<script src="js/rainbow.js"></script>
<script src="js/canvas-fun.js"></script>
</body>
</html>