-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (84 loc) · 3.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Html 5 - Video Playlist</title>
<meta name="description" content="Html 5 - Video Playlist">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="js/video.js" type="application/javascript"></script>
<script src="js/main.js" type="application/javascript"></script>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="contentBlock">
<div class="titleBlock">
<h3 class="title">Html 5 - Video Playlist Demo</h3>
</div>
<div class="videoBlock">
<video id="videoPlayer" controls="controls" poster="" src="placeholder.mp4" lastvideo="false"
onended="OnVideoEnd()"></video>
</div>
<hr/>
<h4>Player Size Controls:</h4>
<button name="btn640x480" onclick="btn640x480_OnClick()">640x480</button>
<button name="btn7200x480" onclick="btn720x480_OnClick()">720x480</button>
<button name="btn852x480" onclick="btn852x480_OnClick()">852x480</button>
<button name="btn800x600" onclick="btn800x600_OnClick()">800x600</button>
<hr/>
<div class="playlistBlock">
<div class="playlistCol">
<h4>Playlist One</h4>
<ul class="playlist">
<li id="firstVideo" movieurl="DemoVideo1.mp4" onclick="lnkChangeVideo(this)" class="playing">Video One</li>
<li movieurl="DemoVideo2.mp4" onclick="lnkChangeVideo(this)">Video Two</li>
<li movieurl="DemoVideo3.mp4" onclick="lnkChangeVideo(this)" lastvideo="true">Video Three</li>
</ul>
<h4>Playlist Two</h4>
<ul class="playlist">
<li movieurl="DemoVideo1.mp4" onclick="lnkChangeVideo(this)">Video One</li>
<li movieurl="DemoVideo1.mp4" onclick="lnkChangeVideo(this)">Video One</li>
<li movieurl="DemoVideo2.mp4" onclick="lnkChangeVideo(this)">Video Two</li>
<li movieurl="DemoVideo2.mp4" onclick="lnkChangeVideo(this)">Video Two</li>
<li movieurl="DemoVideo3.mp4" onclick="lnkChangeVideo(this)">Video Three</li>
<li movieurl="DemoVideo3.mp4" onclick="lnkChangeVideo(this)" lastvideo="true">Video Three</li>
</ul>
<h4>Playlist Three</h4>
<ul class="playlist">
<li movieurl="DemoVideo1.mp4" onclick="lnkChangeVideo(this)">Video One</li>
<li movieurl="DemoVideo1.mp4" onclick="lnkChangeVideo(this)">Video One</li>
<li movieurl="DemoVideo1.mp4" onclick="lnkChangeVideo(this)">Video One</li>
<li movieurl="DemoVideo1.mp4" onclick="lnkChangeVideo(this)" lastvideo="true">Video One</li>
</ul>
</div>
<div class="playlistCol">
<h4>CIT 261 Group 4 Meetings</h4>
<ul class="playlist">
<li movieurl="DemoVideo1.mp4" onclick="lnkChangeVideo(this)">Video One</li>
<li movieurl="DemoVideo1.mp4" onclick="lnkChangeVideo(this)">Video One</li>
<li movieurl="DemoVideo2.mp4" onclick="lnkChangeVideo(this)">Video Two</li>
<li movieurl="DemoVideo2.mp4" onclick="lnkChangeVideo(this)">Video Two</li>
<li movieurl="DemoVideo3.mp4" onclick="lnkChangeVideo(this)">Video Three</li>
<li movieurl="DemoVideo3.mp4" onclick="lnkChangeVideo(this)" lastvideo="true">Video Three</li>
</ul>
<h4>Playlist Five</h4>
<ul class="playlist">
<li movieurl="DemoVideo1.mp4" onclick="lnkChangeVideo(this)">Video One</li>
<li movieurl="DemoVideo1.mp4" onclick="lnkChangeVideo(this)">Video One</li>
<li movieurl="DemoVideo2.mp4" onclick="lnkChangeVideo(this)">Video Two</li>
<li movieurl="DemoVideo2.mp4" onclick="lnkChangeVideo(this)">Video Two</li>
<li movieurl="DemoVideo3.mp4" onclick="lnkChangeVideo(this)">Video Three</li>
<li movieurl="DemoVideo3.mp4" onclick="lnkChangeVideo(this)" lastvideo="true">Video Three</li>
</ul>
</div>
</div>
<hr>
<div class="footer">
<p>© example.com 2018</p>
</div>
</div>
<script language="javascript">
OnLoad();
</script>
</body>
</html>