-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstream.html
50 lines (45 loc) · 1.51 KB
/
stream.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stream</title>
<meta content="Teste Twitch" property="og:title" />
<meta content="
Este site foi feito para testar o tmi.js,
uma biblioteca que permite a interação com a Twitch.
Apenas foi um projetinho para brincar com o tmi.js,
então não espere muita coisa.
" property="og:description" />
<meta content="https://matheushmafra.github.io/Twitch-Integration/stream.html" property="og:url" />
<meta
content="https://github-readme-stats.vercel.app/api/pin/?username=MatheusHMafra&repo=Twitch-Integration&show_owner=true&theme=dark&hide_border=true"
property="og:image" />
<meta content="#b912ec" data-react-helmet="true" name="theme-color" />
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1 id="status">
Status: <span style="color: red;">Offline</span>
</h1>
<h3 id="streamer">
Streamer:
</h3>
<div id="main">
<div id="live"></div>
<br>
<h2 id="counts">
Esperando o streamer iniciar a contagem...
</h2>
<h3 id="title">Teste</h3>
<div id="usersnchat">
<h3 id="users"></h3>
<p id="chat"></p>
</div>
</div>
<script src="js/tmi.min.js"></script>
<script src="js/arrays.js"></script>
<script src="js/configs.js"></script>
<script src="js/stream.js"></script>
</body>
</html>