This repository was archived by the owner on Mar 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwatch.html
More file actions
52 lines (46 loc) · 1.62 KB
/
watch.html
File metadata and controls
52 lines (46 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daikon - Watch</title>
<link rel="icon" href="./assets/logo.png" type="image/png">
<link rel="stylesheet" href="./styles/watch.css">
<link rel="stylesheet" href="./styles/popup.css">
</head>
<body>
<div class="centered">
<h2 id="episode-title">click on ep1 button to start :/</h2>
<table bgcolor="#FFFFFF" cellpadding="2" cellspacing="2" border="2">
<tbody>
<tr>
<td style="vertical-align: top;">
<div class="artplayer-app"></div>
<div id="episode-navigation">
<button id="prev-episode">Previous</button>
<button id="next-episode">Next</button>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div id="episodes-container" class="episode-grid"></div>
<div id="shortcutsPopup" class="shortcuts-popup">
<div class="shortcuts-content">
<p><strong>Keyboard Shortcuts</strong></p>
<ul>
<li><strong>s </strong>: open search</li>
<li><strong>← </strong>: play next ep</li>
<li><strong>→ </strong>: play prev ep</li>
<li><strong>w </strong>: watch now (on details page)</li>
<li><strong>d </strong>: go to daikon homepage</li>
</ul>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/artplayer/dist/artplayer.js"></script>
<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
<script src="./script/watch.js"></script>
<script src="./script/popup.js"></script>
</body>
</html>