-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (67 loc) · 3.01 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="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="viewport" content="width=device-width, initial-scale=1.0,height=device-height">
<title>SpeedReader</title>
<link rel="apple-touch-icon" href="apple-touch-icon.png" rel="preload">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="manifest" href="manifest.json">
<link rel="shortcut icon" href="favicon.png">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/pretty-checkbox@3.0/dist/pretty-checkbox.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css">
<script src="https://cdn.jsdelivr.net/gh/cukmekerb/keymaster/keymaster.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/js-cookie@beta/dist/js.cookie.min.js"></script>
<script src="index.js"></script>
</head>
<body onload="init();">
<!-- nice cock bro -->
<h1 id="signup">SpeedReader</h1>
<br>
<p style="width: 100%; text-align: center; font-size: 20px; margin-top: -50px;">Read without
moving your eyes</p><input placeholder="WPM" id="wpm" type="number" min="60" max="1000000" value="450"
class="centerinput">
<i id="advanced" onclick="showadv()">more</i>
<div id="advanceds" class="hidden center">
<div class="pretty p-icon p-curve p-thick p-smooth">
<input type="checkbox" id="pauseatdot" checked oninput="updatepauselen()">
<div class="state p-success">
<i class="icon fas fa-check"></i>
<label>Pause at end of sentence</label>
</div>
</div>
<div class="pretty p-icon p-curve p-thick p-smooth">
<input type="checkbox" id="pauseatcomma" oninput="updatepauselen()">
<div class="state p-success">
<i class="icon fas fa-check"></i>
<label>Pause after comma</label>
</div>
</div>
<br>
<div id="dot_div">
Pause for <input id="dot_pause_len" value="0.4" step="any" min="0.05" max="10" oninput="updatepauselen()">
seconds after a sentence
</div>
<br>
<div id="comma_div">
Pause for <input id="comma_pause_len" value="0.1" step="any" min="0.05" max="10" oninput="updatepauselen()">
seconds after a comma
</div>
<i>Press space to pause. Arrow keys to skip 10 words</i>
</div>
<div class="flex">
<textarea id="area" placeholder="Paste your text here" noresize></textarea>
</div>
<div class="openbutton" onclick="vroom()">
<span>Read Fast</span>
</div>
<div id="output">
<h2 id="oph2"></h2>
</div>
<!-- Go to www.addthis.com/dashboard to customize your tools -->
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-601f8a3551eaef37"></script>
</body>
</html>