-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
71 lines (67 loc) · 3.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daikon</title>
<link rel="icon" href="./assets/logo.png" type="image/png">
<meta name="description" content="Daikon - An ad-free anime streaming site with a basic, non-bloated UI.">
<link rel="stylesheet" href="./styles/styles.css">
<link rel="stylesheet" href="./styles/popup.css">
</head>
<body>
<div class="centered">
<table bgcolor="#FFFFFF" cellpadding="2" cellspacing="2" border="2">
<tbody>
<tr>
<td style="vertical-align: top;">
<img alt="Daikon" src="./assets/hero.png" width="100%"><br>
<blockquote>
<h2>What is this Obachān no Daikon?</h2>
<p>More like, tf is this Daikon thing? Well, my dear friend, it's an anime streaming website
with a delightfully outdated user interface - and that's the selling point. Aren't you
tired of the perfect, modern websites? Sucker, watch anime just like your grandpa did.
With a super basic user interface, it's as if she handcrafted it herself! By the way,
the design comes from the old DSL info website.</p>
<small><p>PRESS H FOR KEYBOARD SHORTCUTS</p></small>
<div id="searchContainer">
<input type="text" id="searchBar" placeholder="Search">
<div id="suggestions"></div>
</div>
<div class="container">
<h3>Airing Schedule</h3>
<div id="clock"></div>
<div class="scrollable-days">
<div class="day-selector" data-day="sunday">SUN</div>
<div class="day-selector" data-day="monday">MON</div>
<div class="day-selector" data-day="tuesday">TUE</div>
<div class="day-selector" data-day="wednesday">WED</div>
<div class="day-selector" data-day="thursday">THU</div>
<div class="day-selector" data-day="friday">FRI</div>
<div class="day-selector" data-day="saturday">SAT</div>
</div>
<div id="schedule"></div>
</div>
</blockquote>
</td>
</tr>
</tbody>
</table>
</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="./script/schedule.js"></script>
<script src="./script/search.js"></script>
<script src="./script/popup.js"></script>
</body>
</html>