forked from newlancers4/video-streaming-webApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (42 loc) · 1.4 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
<html>
<head>
<title>
Video Stream
</title>
<link rel="stylesheet" type="text/css" href="styles/indexStyles.css">
</head>
<body>
<div id="body-parent">
<div class="video-area">
<div class="playback" id="video-screen">
<div id="video">
<!-- Video playback area -->
</div>
<div class="foot">
<div id="live">
<p>LIVE</p>
</div>
<div id="controls">
<div id="play-pause">
<img class="control-icon-f" src="images/backward.png">
<div id="play-icon" class="play" onclick="play()"></div>
<img class="control-icon-f" src="images/forward.png">
</div>
</div>
<div id="fs">
<img class="fullscreen-icon" src="images/fullscreen.png" onclick="fullscreen()">
</div>
</div>
</div>
</div>
<div class="recommended">
<!-- loop to display mutiple recommended video thumbnails -->
<div class="thumbnail">
<!-- thumbnail holder -->
</div>
</div>
</div>
<script src="scripts/indexScript.js">
</script>
</body>
</html>