-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (58 loc) · 1.76 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>ROONS</title>
<meta name="viewport"
content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<div id="page-wrapper">
<h1 style="padding: 20px;">ROONS</h1>
<div class="card">
<div style="text-align: center;">
<input type="text" name="clock" id="clock" value="-1:20">
</div>
<div style="text-align: center; padding: 10px;">
<button id="decTen">-10</button>
<button id="decOne">-1</button>
<button id="playPause">▶</button>
<button id="incOne">+1</button>
<button id="incTen">+10</button>
</div>
</div>
<div class="card">
<h2>Event Log</h2>
<div id="eventLogContainer"></div>
</div>
<div class="card">
<h2>Settings</h2>
<p id="supportMsg"></p>
<button id="speak">Speak</button>
<input type="text" id="speechMsg" value="This is what I sound like." x-webkit-speech>
<div class="option">
<label for="voice">Voice</label>
<select name="voice" id="voice"></select>
</div>
<div class="option">
<label for="volume">Volume</label>
<input
type="range" name="volume" id="volume"
min="0" max="1" step="0.1" value="1">
</div>
<div class="option">
<label for="rate">Rate</label>
<input
type="range" name="rate" id="rate"
min="0.1" max="2" step="0.1" value="1">
</div>
<div class="option">
<label for="pitch">Pitch</label>
<input
type="range" name="pitch" id="pitch"
min="0" max="2" step="0.1" value="0.8">
</div>
</div>
</div>
<script src="./index.js"></script>
</html>