forked from mdale/html5videowall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (54 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Video Wall</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="">Video Wall</a><span id="vid-wall-title"></span>
<div class="nav-collapse">
<ul class="nav">
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<div id="content">
</div> <!-- /container -->
<div id="user-list-container">
<ul id="user-list">
</ul>
</div>
<h3>Video info</h3>
<div id="metadata" ></div>
<div id="video-list-container">
<video id="local" style="display: none"></video>
<video id="remote" style="display: none"></video>
</div>
</div> <!-- /container -->
</div>
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<!-- video wall scripts -->
<script src="popcorn.js"></script>
<script src="videowall.js"></script>
<script src="archiveUtil.js"></script>
<script src="hoverIntent.js"></script>
<script src="videoUtil.js"></script>
<script src="videochat.js"></script>
<script>
videoWall.build( $('#content') );
</script>
</body>
</html>