-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwatch.html
66 lines (60 loc) · 2.49 KB
/
watch.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="node_modules/video.js/dist/video-js.min.css" />
<link rel="stylesheet" href="css/style.css" />
<title></title>
</head>
<body>
<div class="container-lg watch-container">
<div class="row video-container">
<div class="fadeIn">
<video-js
id="stream-video"
autoplay
muted
controls
class="video-js vjs-live vjs-fluid vjs-16-9"
preload='auto'>
<!-- Sources will be added by JS -->
</video-js>
</div>
<div class="card-body">
<h5 id="stream-title" class="card-title placeholder-glow">
<span class="placeholder col-6"></span>
</h5>
<p id="stream-description" class="card-text placeholder-glow">
<span class="placeholder col-7"></span>
<span class="placeholder col-4"></span>
<span class="placeholder col-4"></span>
<span class="placeholder col-6"></span>
<span class="placeholder col-8"></span>
</p>
</div>
</div>
<div id="further-streams-section" class="row invisible">
<div class="col">
<h5>Further Streams</h5>
<div id="stream-container" class="row row-cols-2 row-cols-lg-4 g-2">
<div class="col card-stream-template">
<a class="card card-stream text-reset">
<div class="card-body">
<h5 class="card-title">Stream 2</h5>
<p class="card-text">Description of Stream 2.</p>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<script src="node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="node_modules/video.js/dist/video.min.js"></script>
<script src="js/watch.js"></script>
<script src="js/common.js"></script>
</body>
</html>