-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
79 lines (65 loc) · 2.08 KB
/
popup.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
73
74
75
76
77
78
79
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<!-- build:css styles/popup-vendor.css -->
<!-- bower:css -->
<!-- endbower -->
<!-- endbuild -->
<!-- build:css styles/main.css -->
<link href="styles/main.css" rel="stylesheet">
<!-- endbuild -->
</head>
<body>
<div class="speakingrate">
<label>
<h3> When Text is selected, Just: </h3>
<table>
<tr>
<td id="speak-on-select" class="">
<h5 id="speak-on-select-text" class="locale"> Speak</h5>
</td>
<td id="show-speak-button" class="">
<h5 id="show-speak-button-text" class="locale"> Show Speak Button</h5>
</td>
</tr>
</table>
</label>
<br>
<label>
<table>
<tr>
<td id="speak-on-click" class="">
<h5 id="speak-on-click-text" class="locale"> Speak What I click </h5>
</td>
</table>
</label>
<br>
<label>
<h3 id="lang_rate" class="locale"> Speaking rate: <span id="iwords">0</span> <span id="lang_wpm" class="locale">words per minute</span> </h3>
<input id="irate" type="range" min="0.1" max="2" value="1" step="0.01">
</label>
<br>
<label>
<h3 class="locale"> Voice pitch: <span id="pitch-value">0</span></h3>
<input id="pitch-range" type="range" min="0" max="8" value="4" step="0.01">
</label>
<br>
<label>
<h3 class="locale"> Speaking volume: <span id="volume-value">0</span></h3>
<input id="volume-range" type="range" min="0" max="4" value="2" step="0.01">
</label>
<br>
<select id="voices-select">
</select>
</div>
<!-- build:js scripts/popup-vendor.js -->
<!-- bower:js -->
<!-- endbower -->
<!-- endbuild -->
<script src="jquery-3.1.1.min.js" type="text/javascript"></script>
<!-- build:js scripts/popup.js -->
<script src="scripts/popup.js"></script>
<!-- endbuild -->
</body>
</html>