-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfocus.html
More file actions
38 lines (34 loc) · 1.23 KB
/
Copy pathfocus.html
File metadata and controls
38 lines (34 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Focus Reader</title>
<link rel="icon" type="image/png" href="icon16.png">
<link rel="stylesheet" href="focus.css">
</head>
<body>
<div id="viewport" class="viewport">
<div id="slide-container" class="slide-container">
<div id="slide-text" class="slide-text">Loading...</div>
<img id="slide-img" class="slide-img" src="" alt="" />
<figcaption id="slide-caption" class="slide-caption"></figcaption>
</div>
<!-- Controls bar -->
<div class="controls font-mono">
<span id="progress">0 / 0</span>
<!-- Teleprompter controls (center) -->
<div class="playback-controls">
<button id="play-btn" class="play-btn" title="Autoplay (P)">▶</button>
<div class="speed-wrap" id="speed-wrap">
<input type="range" id="speed-slider" min="150" max="700" step="25" value="350" />
<span id="wpm-label">350 wpm</span>
</div>
</div>
<span class="shortcuts">←/→ Navigate · Esc Exit</span>
</div>
<!-- Slide timing bar: fills during autoplay to show when next slide arrives -->
<div id="timer-bar" class="timer-bar"></div>
</div>
<script src="focus.js"></script>
</body>
</html>