-
Notifications
You must be signed in to change notification settings - Fork 0
/
temp.html
28 lines (28 loc) · 1.12 KB
/
temp.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
<!DOCTYPE html>
<html>
<head>
<title>West Huntsville Livestream</title>
<style>
body, html {width: 100%; height: 100%; margin: 0; padding: 0}
.row-container {display: flex; width: 100%; height: 100%; flex-direction: column; overflow: hidden;}
.icontainer { flex-grow: 1; border: none; margin: 0; padding: 0; }
</style>
</head>
<body>
<div id=livestream class="row-container">
<iframe autoplay id="ls_embed_1559301526"
src="https://livestream.com/accounts/4402209/events/2265669/player?width=1280&height=720&enableInfoAndActivity=true&defaultDrawer=&autoPlay=true&mute=false"
class="icontainer" frameborder="0" scrolling="no" allowfullscreen> </iframe>
<!-- link for debug without a running livestream
<iframe autoplay id="ls_embed_1559301526"
src="https://livestream.com/accounts/4402209/events/2265669/videos/216154601/player?width=1280&height=720&enableInfoAndActivity=true&defaultDrawer=&autoPlay=true&mute=false"
class="icontainer" frameborder="0" scrolling="no" allowfullscreen> </iframe>
-->
</div>
<script>
$(function(){
$("#livestream").trigger("click");
})
</script>
</body>
</html>