-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (86 loc) · 2.68 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Teste Twitch</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/" 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>
<div id="selectChannel">
<h2>
Insira o canal
</h2>
<p class="erro" id="mensagemErro"></p>
<input type="text" id="channel">
<br>
<label for="nochat">Sem chat</label>
<label class="container">
<input type="checkbox" name="configs" id="nochat">
<span class="checkmark"></span>
</label>
<label for="noemotes">Sem emotes customizados</label>
<label class="container">
<input type="checkbox" name="configs" id="noemotes">
<span class="checkmark"></span>
</label>
<button id="botao"> >> </button>
</div>
<br>
<div>
<h2>
Multi Stream
</h2>
<p>
Insira os canais separados por vírgula
</p>
<p>
Exemplo: canal1,canal2,canal3
</p>
<p>
OBS:
<br>
Não coloque espaços
<br>
Recomendado não colocar mais de que 4 canais <br>
(talvez trave o navegador!!)
</p>
<p class="erro" id="mensagemErroMulti"></p>
<input type="text" id="multiChannels">
<br>
<button id="multiBotao"> >> </button>
</div>
<br>
<div>
<h2>
Sobre
</h2>
<p>
Este site foi feito para testar o tmi.js, <br>
uma biblioteca que permite a interação com a Twitch.
</p>
<p>
Apenas foi um projetinho para brincar com o tmi.js, <br>
então não espere muita coisa.
</p>
</div>
<footer>
<p>
Feito por <a href="https://github.com/MatheusHMafra" style="color: white;">Matheus</a>
</p>
</footer>
<script src="js/index.js"></script>
</body>
</html>