This repository was archived by the owner on Jan 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathspeedreader.html
More file actions
53 lines (52 loc) · 3.16 KB
/
speedreader.html
File metadata and controls
53 lines (52 loc) · 3.16 KB
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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Speed reader</title>
<link href='http://fonts.googleapis.com/css?family=Crete+Round:400,400italic&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="app.css" />
</head>
<body>
<div id="container">
<h1>Speed reader</h1>
<textarea id="text-to-read">Wikipedia: Speed reading is the name for a number of ways to increase the speed at which a text can be read, so that the important facts of the text can still be understood. There are different ways to improve reading speed, but they are all similar. A trained reader is able to read and understand between 200 and 300 words per minute, for a text that is not very difficult to understand. Better training can improve this speed to over 1000 words per minute. Using a lot of exercise, it is possible to increase reading speed further. The best readers can read between 3000 and 4000 words per minute, and understand about 80% of them.</textarea>
<div id="reading-screen">
<div id="word"></div>
<input id="text-progress" type="range" />
</div>
<div id="options">
<div class="row">
<span id="wpm">Words per minute (WPM):</span>
<input id="reading-speed" type="number" value="200" step="25" min="0" max="1000" />
<span id="text-info"></span>
</div>
<div class="row">
<label for="merge" title="Words shorter than 4 characters are displayed together with the previous word">Merge short words:</label>
<input id="merge" type="checkbox" checked="true" title="Words shorter than 4 characters are displayed together with the previous word"/>
</div>
<div class="row">
<label for="night-mode">Night mode:</label>
<input type="checkbox" id="night-mode" />
</div>
</div>
<button class="btn" id="start">Read!</button>
<button class="btn" id="new">New text</button>
</div>
<div id="other">
<div id="desc">
<p>Paste the text you want to speedread, and click the <em>Read!</em> button. Additionally, you can set the reading speed, but the default 200 words per minute is optimal for an untrained reader.
</p>
<p>Keyboard shortcuts:</p>
<ul>
<li><em>P</em> or <em>Space</em>: Pause/resume</li>
<li><em>Left</em> arrow: Decrease speed by 25</li>
<li><em>Right</em> arrow: Increase speed by 25</li>
<li><em>B</em>: Go back by 10 words</li>
</ul>
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="jquery-1.8.3.min.js"><\/script>')</script>
<script src="app.js"></script>
</body>
</html>