This repository has been archived by the owner on Jan 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·49 lines (49 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel="stylesheet" href="assets/styles.css">
<link rel="icon" href="assets/favicon.png" type="image/x-icon" />
<link href="https://vjs.zencdn.net/7.8.4/video-js.css" rel="stylesheet" />
<scropt async src="https://unpkg.com/browse/@videojs/[email protected]/dist/videojs-http-streaming.js"></scropt>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-177231595-1"></script>
<script src="https://kit.fontawesome.com/0a89134306.js" crossorigin="anonymous"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-177231595-1');
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Lawton Surf Cam</title>
</head>
<body>
<div class="row-container">
<div class="logo-container">
<img class="content-logo-img" src="assets/logo.png" alt="Lawton Surf Cam"/>
</div>
<div class="video-container">
<script src="https://vjs.zencdn.net/7.8.4/video.js"></script>
<video-js id=surf-stream class="vjs-default-skin vjs-big-play-centered" controls>
<source
src="https://streaming.lawtonsurf.watch:5443/LiveApp/streams/930413474974168166733316.m3u8"
type="application/x-mpegURL">
</video-js>
<script src="video.js"></script>
<script src="videojs-http-streaming.js"></script>
<script>
var player = videojs('surf-stream', {
aspectRatio: '16:9',
poster: 'assets/poster.jpg',
controlBar: {
volumePanel: false
}
});
player.play();
</script>
</div>
<div class="link-container">
<a href="https://www.instagram.com/lawtonsurf" class="fab fa-instagram"></a>
</div>
</div>
</body>
</html>