-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
56 lines (37 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
</head>
<body>
<!--
Video URLs
preroll video (HLS):
http://wms.stagecloud.io/vodgs/_definst_/gs/assets/stagecloud-preroll-master_720_m9lrc4.mp4/playlist.m3u8
main content video (HLS):
http://wms.stagecloud.io/vodgs/_definst_/gs/FrankyBandWagon_RoofSession.mp4/playlist.m3u8
-->
<div class="fullscreen-video-player">
<!-- TODO - insert video player markup here-->
<video>
</video>
</div>
<a href="javascript:history.back()" class="back-button">
<i class="fa fa-arrow-left fa-2x"></i>
</a>
<script>
$(window).load(function () {
// TODO add video.js initialization
});
</script>
</body>
</html>