-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (62 loc) · 2.86 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/css/style.css" rel="stylesheet" type="text/css">
<title>EMDR Therapy Lightbar</title>
</head>
<body>
<img src="assets/images/clouds3.jpg" alt="clouds" height="640px" width="440px" class="panel1" />
<img src="assets/images/pebbles.jpg" alt="tea" width="440px" height="640px" class="panel2" />
<img src="assets/images/lotus.jpg" alt="tea" width="400px" height="640px" class="panel3" />
<div class="settings_form" id="settings_form">
<div class="form-container">
<h3>EMDR Therapy Lightbar</h3>
<form name="settings">
<div class="row">
<label for="duration">Duration (seconds)</label>
<input id="duration" type="text" value="100">
</div>
<div class="row">
<label for="color">Light bulb color</label>
<select id="color">
</select>
</div>
<div class="row">
<label for="mode">Display Mode</label>
<select id="mode">
<option value="slide">Slide</option>
<option value="flicker">Flicker</option>
</select>
</div>
<div class="row">
<label for="bulb_pause">Time on inside light bulb (ms)</label>
<input id="bulb_pause" type="text" value="100">
</div>
<div class="row">
<label for="edge_pause">Time on edge light bulb(ms)</label>
<input id="edge_pause" type="text" value="100">
</div>
<div class="row">
<label for="sound_on">Play sound</label>
<input id="sound_on" type="checkbox" value="on">
</div>
<div class="row">
<label for="frequency">Sound frequency (<span id="frequency_value">200</span> hertz)</label>
<input id="frequency" type="range" min="100" max="800" value="400" onchange="frequencyChange()">
</div>
<button type="button" class="btn_start" onclick="start(), change(this)">Start</button>
</form>
</div>
</div>
</body>
<div id="lightbar_wrapper" class="lightbar_wrapper">
<div class="lightbar_container" id="lightbar_container"></div>
<button type="button" class="btn_stop" onclick="stop(), changeBack(this)">Stop</button>
</div>
<script src="assets/js/main.js"></script>
<script src="assets/js/colorPicker.js"></script>
</body>
</html>