-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
56 lines (52 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Player HTML</title>
</head>
<body>
<div id="header">
<h1>Player HTML5</h1>
</div>
<div id="player" class="custom-video">
<video id="video"></video>
<div id="controls">
<ul>
<li>
<button type="button" id="play-pause" class="play button"></button>
</li>
<li>
<div id="time">
<span id="dur-minutes">00:</span>
<span id="dur-seconds">00</span>
</div>
</li>
<li>
<input type="range" id="seek-bar" class="seekbar" value="0"/>
</li>
<li>
<button type="button" id="mute" class="unmute button"></button>
</li>
<li>
<input type="range" id="volume-bar" value="100"/>
</li>
<li>
<div id="quality" class="dropdown">
<p>Quality</p>
<div class="dropdown-content">
<a href="#">320p</a>
<a href="#">576p</a>
<a href="#">720p</a>
</div>
</div>
</li>
<li>
<button type="button" id="full-screen" class="full-screen-off button"></button>
</li>
</ul>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="dist/main.bundle.js"></script>
</body>
</html>