-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathindex.html
105 lines (98 loc) · 2.81 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<html>
<head>
<link href="https://unpkg.com/video.js@7/dist/video-js.min.css" rel="stylesheet" />
<link href="sea/index.css" rel="stylesheet" />
<link href="forest/index.css" rel="stylesheet" />
<link href="fantasy/index.css" rel="stylesheet" />
<link href="city/index.css" rel="stylesheet" />
<style>
.player {
margin: 5em auto;
width: 500px;
}
</style>
</head>
<body>
<div class="player">
<h2>Sea</h2>
<video
id="sea-video"
class="video-js vjs-theme-sea"
controls
preload="auto"
poster="https://image.mux.com/FGZHQaIg7cjVNS2dgTrnMYSdCkXohOl3/thumbnail.jpg"
data-setup='{ "fluid": true }'
>
<source
src="https://stream.mux.com/FGZHQaIg7cjVNS2dgTrnMYSdCkXohOl3.m3u8"
type="application/x-mpegurl"
/>
</video>
</div>
<div class="player">
<h2>Forest</h2>
<video
id="forest-video"
class="video-js vjs-theme-forest"
controls
preload="auto"
poster="https://image.mux.com/FGZHQaIg7cjVNS2dgTrnMYSdCkXohOl3/thumbnail.jpg"
data-setup='{ "fluid": true }'
>
<source
src="https://stream.mux.com/FGZHQaIg7cjVNS2dgTrnMYSdCkXohOl3.m3u8"
type="application/x-mpegurl"
/>
</video>
</div>
<div class="player">
<h2>Fantasy</h2>
<video
id="fantasy-video"
class="video-js vjs-theme-fantasy"
controls
preload="auto"
poster="https://image.mux.com/FGZHQaIg7cjVNS2dgTrnMYSdCkXohOl3/thumbnail.jpg"
data-setup='{ "fluid": true }'
>
<source
src="https://stream.mux.com/FGZHQaIg7cjVNS2dgTrnMYSdCkXohOl3.m3u8"
type="application/x-mpegurl"
/>
</video>
</div>
<div class="player">
<h2>Fantasy (Nyan)</h2>
<video
id="fantasy-video"
class="video-js vjs-theme-fantasy nyan"
controls
preload="auto"
poster="https://image.mux.com/FGZHQaIg7cjVNS2dgTrnMYSdCkXohOl3/thumbnail.jpg"
data-setup='{ "fluid": true }'
>
<source
src="https://stream.mux.com/FGZHQaIg7cjVNS2dgTrnMYSdCkXohOl3.m3u8"
type="application/x-mpegurl"
/>
</video>
</div>
<div class="player">
<h2>City</h2>
<video
id="city-video"
class="video-js vjs-theme-city"
controls
preload="auto"
poster="https://image.mux.com/FGZHQaIg7cjVNS2dgTrnMYSdCkXohOl3/thumbnail.jpg"
data-setup='{ "fluid": true }'
>
<source
src="https://stream.mux.com/FGZHQaIg7cjVNS2dgTrnMYSdCkXohOl3.m3u8"
type="application/x-mpegurl"
/>
</video>
</div>
<script src="https://vjs.zencdn.net/7.6.0/video.js"></script>
</body>
</html>