-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 1.24 KB
/
index.html
File metadata and controls
31 lines (30 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/styles.css">
<title>Video Player</title>
</head>
<body>
<div class="wrapper">
<div class="player">
<video muted poster="./images/poster.jpg" src="https://media.w3.org/2010/05/sintel/trailer.mp4" id="video"></video>
<div class="player-overlay">
<div class="player-actions">
<h2 class="player-title">Música para programar</h2>
<button class="button" id="backward" aria-label="Retroceder 10 segundos" title="Retroceder 10 segundos"></button>
<button class="button" id="play" aria-label="Reproducir" title="Reproducir"></button>
<button class="button" hidden id="pause" aria-label="Pausar" title="Pausar"></button>
<button class="button" id="forward" aria-label="Avanzar 10 segundos" title="Avanzar 10 segundos"></button>
</div>
<div class="player-progress">
<input type="range" min="0" max="0" step="1" value="0" id="progress">
</div>
</div>
</div>
</div>
<script src="./js/index.js"></script>
</body>
</html>