-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (47 loc) · 1.28 KB
/
index.html
File metadata and controls
50 lines (47 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Playerly</title>
<link rel="stylesheet" href="css/main.min.css" />
</head>
<body>
<div class="logo">
<img src="image/logo.png" />
</div>
<div class="player">
<video class="player-video viewer" src="video/video.mp4"></video>
<div class="player-controls">
<div class="progress">
<div class="progress-watched"></div>
</div>
<button class="player-btn toggle" title="Toggle Play">►</button>
<input
type="range"
name="volume"
class="player-slider"
min="0"
max="1"
step="0.05"
value="0.7"
/>
<input
type="range"
name="playbackRate"
class="player-slider"
min="0.5"
max="2"
step="0.1"
value="1"
/>
<button data-skip="-5" class="player-btn">-5s</button>
<button data-skip="10" class="player-btn">+10s</button>
</div>
</div>
<div class="github">
<a href="https://github.com/Alirezamxz/playerly">GitHub</a>
</div>
<script src="js/index.js"></script>
</body>
</html>