-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (25 loc) · 920 Bytes
/
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
<!Doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>video player 😀 </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1> video player!! 😀 </h1>
<div class="player">
<video class= "player_video viewer" src="1280.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="100" step="1" value="10">
<input type="range" name="playbackRate" class="player__slider" min="0.5" max="2" step="0.1" value="0">
<button data-skip="-10" class="player__button">« 10s</button>
<button data-skip="25" class="player__button">25s »</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>