-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.16 KB
/
Copy pathindex.html
File metadata and controls
39 lines (36 loc) · 1.16 KB
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
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>franoz boids</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<div id="main_content">
<header>
<h1>BOIDS</h1>
</header>
<div id="boids_screen">
<canvas id="boids_canvas" width="1920" height="1080">
</canvas>
</div>
<div id="controls">
<button type="button" name="playpause" id="control_btn" class="btn-outline-custom" value="Paused" onclick="run_toggle()">Run</button>
<span class="slider_container">
<input type="range" min="0.0001" max="0.01" step="any" class="slider" id="coherence_slider">
<p>Coherence</p>
</span>
<span class="slider_container"><input type="range" min="30" max="90" class="slider"
id="separation_slider">
<p>Separation</p>
</span>
<span class="slider_container"><input type="range" min="0.01" max="0.5" value="0.25" step="any" class="slider"
id="alignment_slider">
<p>Alignment</p>
</span>
</div>
</div>
</body>
</html>