-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (38 loc) · 1.41 KB
/
Copy pathindex.html
File metadata and controls
43 lines (38 loc) · 1.41 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
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StroboPage</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="controls">
<div class="input_container">
<label for="intervalInput">Interval (sec):</label>
<input type="number" id="intervalInput" value="1">
</div>
<div class="input_container">
<label for="lengthInput">Length of Each Interval (sec):</label>
<input type="number" id="lengthInput" value="0.2">
</div>
<div class="input_container">
<label for="colorInput">Foreground Color:</label>
<input type="color" id="colorInput" value="#ffffff">
</div>
<div class="input_container">
<label for="colorInput">Background Color:</label>
<input type="color" id="backColorInput" value="#dddddd">
</div>
<div class="input_container">
<label for="colorTransitionInput">Transition (sec):</label>
<input type="number" id="TransitionTimeInput" value="0.5">
</div>
<button onclick="startStroboscope()">Start</button>
<button onclick="stopStroboscope()">Stop</button>
</div>
<div id="strobeContainer"></div>
<script type="text/javascript" src="script.js" defer>
</script>
</body>
</html>