forked from ssnivy/TUYUArchive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (65 loc) · 2.41 KB
/
index.html
File metadata and controls
69 lines (65 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TUYU Archive</title> <!-- PLEASE WORK -->
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
data-purpose="Layout StyleSheet"
title="Web Awesome"
href="/css/app-wa-4605c815f1874757bc9ac33aa114fb0f.css?vsn=d"
>
<link
rel="stylesheet"
href="https://site-assets.fontawesome.com/releases/v6.7.2/css/all.css"
>
<link href="https://fonts.googleapis.com/css2?family=Lexend:wght@400;600&display=swap" rel="stylesheet">
<link rel="icon" href="TUYU-Band-Logo.ico" type="image/x-icon">
</head>
</head>
<body>
<video class="video-background" id="background-video" muted loop>
<source src="placeholder.mp4" type="video/mp4" />
Your browser does not support HTML5 video.
</video>
<div class="video-overlay"></div>
<header class="invisible-header">
<button id="piano">
<i class="fa-solid fa-piano"></i>
</button>
</header>
<div class="player-container" id="player">
<div class="song-header" id ="header">
<div class="song-title" id="song-title">Song Name</div>
</div>
<div class="album-overlay">
<img
src="placeholder.jpg"
alt="Album Cover"
class="album-cover"
id="album-cover"
/>
</div>
<div class="time-container" id="time-container">
<div class="timeline-container" id="timeline">
<div class="timeline-progress" id="timeline-progress"></div>
</div>
<div class="timer" id="timer">0:00 / 0:00</div>
</div>
<div class="controls">
<button id="prev" data-tooltip="[<] Go to The Previous Song"><i class="fas fa-backward"></i></button>
<button id="random" data-tooltip="[R] Play a Random Song"><i class="fa-solid fa-shuffle"></i></button>
<button id="play" data-tooltip="[Space] Play/Pause the Song"><i class="fas fa-play"></i></button>
<button id="repeat" data-tooltip="[L] Repeat the Current Song"><i class="fa-solid fa-rotate-right"></i></button>
<button id="next" data-tooltip="[>] Go to the Next Song"><i class="fas fa-forward"></i></button>
</div>
<audio id="audio"></audio>
</div>
<div class="footer">
None of this audio is owned by me.
</div>
<script src="script.js"></script>
</body>
</html>