-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle-event.html
More file actions
159 lines (132 loc) · 5.89 KB
/
single-event.html
File metadata and controls
159 lines (132 loc) · 5.89 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta name="description" content="">
<meta name="keywords" content="">
<!-- Appearance -->
<meta name="theme-color" content="#08164a" />
<title>GoLive</title>
<!-- Stylesheet -->
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="css/single-event-style.css" rel="stylesheet" type="text/css">
<!-- Swiper-slide -->
<link rel="stylesheet" href="https://unpkg.com/swiper/css/swiper.min.css">
<!-- google fonts -->
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700,900&display=swap" rel="stylesheet">
<!-- font awsome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet">
</head>
<body>
<div class="one-event container">
<!------------------------- Navbar starts ------------------------->
<div class="one-event nav">
<a class="nav-logo" href="index.html">
<img src="img/GoLive-logo.jpg">
</a>
</div>
<!------------------------- Stage section starts ------------------------->
<div class="stage section">
<div class="head contents">
<hr>
<h1>OBA NISA</h1>
<hr>
<div class="row">
<h2>BNS</h2>
<div class="live-bulb">
<h6>Live Streaming</h6>
<div class="dot"></div>
</div>
</div>
</div>
<div id="" class="iframe-container">
<iframe class="responsive-iframe contents" src="https://embed.twitch.tv?channel=golivetv&layout=video&migration=true&parent=&referrer=file%3A%2F%2F%2FUsers%2Fjarvis%2FDev%2FGoLive-web%2Fsingle-event.html&width=640" allowfullscreen="" scrolling="no" frameborder="0" allow="autoplay; fullscreen" title="Twitch" width="100%"></iframe>
</div>
</div>
<!------------------------- Comments section starts ------------------------->
<div class="comments section contents">
<div class="live-comment">
<div class="row">
<h2>COMMENTS</h2>
</div>
<hr>
<div class="fieldx">
<div id="disqus_thread"></div>
<script>
/**
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
/*
var disqus_config = function () {
this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable
this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
};
*/
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = 'https://golive-1.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
</div>
</div>
<!------------------------- Footer starts ------------------------->
<div class="footer section">
</div>
</div>
<!-- Container end -->
<script id="dsq-count-scr" src="//golive-1.disqus.com/count.js" async></script>
<script src="https://embed.twitch.tv/embed/v1.js"></script>
<!-- <script type="text/javascript">
new Twitch.Embed("player", {
width: 640,
height: 390,
channel: "golive",
layout: "video"
});
</script> -->
<script>
// 2. This code loads the IFrame Player API code asynchronously.
// var tag = document.createElement('script');
// tag.src = "https://www.youtube.com/iframe_api";
// var firstScriptTag = document.getElementsByTagName('script')[0];
// firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
// // 3. This function creates an <iframe> (and YouTube player)
// // after the API code downloads.
// var player;
// function onYouTubeIframeAPIReady() {
// player = new YT.Player('player', {
// height: '390',
// width: '640',
// videoId: '7Lv9ZlxLbJI',
// events: {
// 'onReady': onPlayerReady,
// 'onStateChange': onPlayerStateChange
// }
// });
// }
// // 4. The API will call this function when the video player is ready.
// function onPlayerReady(event) {
// event.target.playVideo();
// }
// // 5. The API calls this function when the player's state changes.
// // The function indicates that when playing a video (state=1),
// // the player should play for six seconds and then stop.
// var done = false;
// function onPlayerStateChange(event) {
// if (event.data == YT.PlayerState.PLAYING && !done) {
// setTimeout(stopVideo, 000);
// done = true;
// }
// }
// function stopVideo() {
// player.stopVideo();
// }
</script>
</body>
</html>