-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (78 loc) · 2.64 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
106
107
108
109
110
<!--
------------------------------------------------------
Connect two browsers. One will be the "leader",
the other the follower. Use URLS below.
Leader URL:
http://localhost:3000/live.html?status=leader
Follower URL:
http://localhost:3000/live.html?status=follower
------------------------------------------------------
NATIVATION MENU:
arrow down (40) - start
arrow right (39) - next
arrow left (37) - back
space bar (32) - green screen
arrow up (38) - end, Q & A
CONTENT VIDEO MENU:
number 5 (53) - play video
number 6 (54) - pause video
------------------------------------------------------
-->
<!DOCTYPE html>
<html>
<head>
<title>Grid</title>
<link rel="stylesheet" type="text/css" href="assets/css/live.css">
</head>
<body>
<div class="grid">
<!-- ------------------------ -->
<!-- --- OVERLAY PANE --- -->
<!-- ------------------------ -->
<div id="overlay" style="display: none;">
<div id="overlayVideo" class="overlayImage" style="display: none;">
<video controls>
<source src="assets/video/intro.mp4" type="video/mp4">
</video>
</div>
<div id="overlayImage" style="display: none;">
<img src="assets/img/abel_and_john_01.jpg" class="overlayImage">
</div>
</div>
<!-- ------------------------ -->
<!-- --- CONTENT PANE --- -->
<!-- ------------------------ -->
<div id="contentTitle">
<div id="contentTitleBox">
John & Abel
</div>
</div>
<div class="content">
<img src="assets/img/onair.jpg" id="contentImage" class="image" />
</div>
<div class="content" style="visibility:hidden;">
<video controls id="contentVideo">
<source src="assets/video/passwords.mp4" type="video/mp4">
</video>
</div>
<!-- ----------------------- -->
<!-- --- TOPICS PANE --- -->
<!-- ----------------------- -->
<div class="topics">
<div class="thumbnailContainer">
<div class="thumbnailWrapper">
<img id="thumbnail" src="assets/img/thumbnails/1.jpg">
<div id="thumbnailCaption">IOT</div>
</div>
</div>
<div id="timer">Time</div>
<div id="topicList"></div>
</div>
<!-- ----------------------- -->
<!-- --- FOOTER PANE --- -->
<!-- ----------------------- -->
<div class="footer"><div class="footerTitle" id="footerTitle">Footer</div></div>
</div>
</body>
<script src="assets/js/live.js" defer></script>
</html>