-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (74 loc) · 2.88 KB
/
index.html
File metadata and controls
97 lines (74 loc) · 2.88 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Neuro Reader</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="app">
<div id="top">
<div id="text-panel">
<textarea id="textInput">
............
You can paste your own text here to speed read it. Stop the reader first, paste
your text, adjust the WPM (words per minute) slider, and press play.
............
The other theory, quantum physics, had a more difficult birth. It was
a collaborative effort involving dozens of physicists working over the
course of nearly thirty years. Einstein was among them, but he was not
their leader; the closest thing this disorganized and unruly band of
revolutionaries had was Niels Bohr, the great Danish physicist. Bohr’s
Institute for Theoretical Physics in Copenhagen was the mecca of
quantum physics in its infancy, with nearly every big name in the field
for fifty years studying there at one point or another. The physicists
who worked there made profound discoveries across nearly every field
of science: they developed the first genuine theory of quantum physics,
found the underlying logic of the periodic table of the elements, and
used the power of radioactivity to reveal the basic workings of living
cells. And it was Bohr, along with a group of his most talented students
and colleagues—Werner Heisenberg, Wolfgang Pauli, Max Born, Pascual
Jordan, and others—who developed and championed the “Copenhagen
interpretation,” which rapidly became the standard interpretation of the
mathematics of quantum physics.
</textarea>
</div>
<div id="controls-panel">
<label>WPM</label>
<input id="wpm" type="range" min="100" max="1200" value="200">
<div id="wpmVal">500</div>
<div class="controls-group">
<button id="playPause">▶</button>
<button id="stop">■</button>
</div>
<label class="toggle">
<input type="checkbox" id="pivotToggle" checked>
<span>Pivot guide</span>
</label>
<label class="toggle">
<input type="checkbox" id="chunkToggle" checked>
<span>Semantic chunking</span>
</label>
<label>Pivot position</label>
<div class="pivot-bias">
<button data-bias="-1">◀</button>
<span id="biasLabel">Default</span>
<button data-bias="1">▶</button>
</div>
<div class="controls-note">
Use Play button or Space to start and pause.
use the ⇐ or ⇒ to move, press stop to edit/paste text.
</div>
</div>
</div>
<div id="reader-stage">
<div id="focus-box">
<div id="pivot"></div>
<div id="word"></div>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>