-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
26 lines (26 loc) · 894 Bytes
/
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
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<title>Highlight Reader</title>
<script src="jquery-3.5.1.min.js"></script>
<script src="popup.js"></script>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<h2>Higlight Reader</h2>
<div>Welcome to Highlight Reader! Highlight a section of text, and then either right click and select the "Highlight Reader" menu, or press Alt-S to begin text-to-speech.</div>
<h3>Speed</h3>
<div class="slider-container">
<input type="range" min="0" max="40" value="10" class="value-slider" id="rateSlider">
<p>x<span class="value-text" id="rateValue"></span></p>
</div>
<h3>Pitch</h3>
<div class="slider-container">
<input type="range" min="0" max="20" value="10" class="value-slider" id="pitchSlider">
<p>x<span class="value-text" id="pitchValue"></span></p>
</div>
<h3>Voice</h3>
<select id="voiceDropdown"></select>
</body>
</html>