-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path11.html
More file actions
73 lines (71 loc) · 2.38 KB
/
11.html
File metadata and controls
73 lines (71 loc) · 2.38 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
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Custom Video Player (Day-11)</title>
<link rel="stylesheet" href="../assets/css/11.css" />
<script src="../assets/js/11.js"></script>
</head>
<body>
<div class="navbar">
<div class="info">
<div class="info-sign">
<div class="symbol">i</div>
</div>
<span class="description">
<b> <i>Tip</i> </b> : Enjoy the Video with Controls !
</span>
</div>
<div class="source">
<a
class="info"
target="_blank"
aria-hidden="true"
title="View on Github"
href="https://github.com/karna98/JavaScript30/#day-11-"
>
<div class="info-sign">
<div class="symbol">
<img src="../assets/images/github.svg" />
</div>
</div>
</a>
</div>
</div>
<div class="player">
<video
class="player__video viewer"
src="../assets/videos/story.mp4"
></video>
<div class="player__controls">
<div class="progress">
<div class="progress__filled"></div>
</div>
<button class="player__button toggle" title="Toggle Play">
►
</button>
<input
type="range"
name="volume"
class="player__slider"
min="0"
max="1"
step="0.05"
value="1"
/>
<input
type="range"
name="playbackRate"
class="player__slider"
min="0.5"
max="2"
step="0.1"
value="1"
/>
<button data-skip="-10" class="player__button">« 10s</button>
<button data-skip="25" class="player__button">25s »</button>
<button class="player__button fullScreen">⤢</button>
</div>
</div>
</body>
</html>