-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvideo-player.html
53 lines (50 loc) · 1.59 KB
/
video-player.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Anime Site - Video Player</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap">
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="https://cdn.plyr.io/3.6.9/plyr.css" />
<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
<script src="https://cdn.plyr.io/3.6.9/plyr.js"></script>
<link rel="shortcut icon" type="image/x-icon" href="./assets/images/favicon.ico">
<style>
:root {
--plyr-color-main: #ff69b4;
}
</style>
</head>
<body>
<header>
<div class="header-wrapper">
<a href="index.html">
<div class="logo-container">
<img src="./assets/images/Watermark.png" alt="Logo" class="logo-image" />
<div class="logo">AnimeSite</div>
</div>
</a>
</div>
</header>
<main>
<section class="video-section" id="video-section">
<div class="container">
<p class="current-ep" id="current-episode"></p>
<div class="player-wrapper">
<video id="player" playsinline controls></video>
</div>
</div>
</section>
<div class="episode-navigation">
<button id="prev-episode" class="episode-button">Previous</button>
<button id="next-episode" class="episode-button">Next</button>
</div>
</main>
<footer>
<div class="footer-wrapper">
<p>© Anime Site 2023</p>
</div>
</footer>
<script src="video-player.js"></script>
</body>
</html>