-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="submodules/reset-css/reset.css" />
<link rel="stylesheet" href="build/css/main.min.css">
<link rel="stylesheet" href="build/css/demo.min.css">
<script src="build/javascript/main.js" defer></script>
<script src="build/javascript/demo.js" defer></script>
<title>Custom player</title>
</head>
<body>
<main>
<figure data-mvp="container">
<video width="1280" height="720">
<source src="demo/videos/big_buck_bunny.mp4" type="video/mp4">
</video>
<figcaption>
</figcaption>
<ul>
<li><button data-mvp="play|pause"></button></li>
<li>
<progress data-mvp="timeline"></progress>
<span data-mvp="time"></span>
</li>
<li><button></button></li>
<li>
<button data-mvp="mute"></button>
<progress data-mvp="volume"></progress>
</li>
</ul>
</figure>
</main>
</body>
</html>