This repository was archived by the owner on Aug 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
142 lines (87 loc) · 3.15 KB
/
Copy pathindex.html
File metadata and controls
142 lines (87 loc) · 3.15 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Live do ESKIMO</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<script type="text/javascript"
src="http://ff.kis.v2.scr.kaspersky-labs.com/FD126C42-EBFA-4E12-B309-BB3FDD723AC1/main.js?attr=NELnwWJmLPnR0SQG3Si2VNXK-veruGL-H7r0DLmTFhCiZDahHTF19u3Kn0EwGr4V"
charset="UTF-8"></script>
</head>
<body">
<div class="container">
<div class='title'>
<h1>ESKIMOZIN</h1>
<p id="proxima-live"></p>
</div>
<div class="countdown">
<div>
<h1 id="dias">00</h1>
<p class="legenda legenda-dias">Dias</p>
</div>
<div>
<h1 id="horas">00</h1>
<p class="legenda legenda-horas">Horas</p>
</div>
<div>
<h1 id="minutos">00</h1>
<p class="legenda legenda-minutos">Minutos</p>
</div>
<div>
<h1 id="segundos">00</h1>
<p class="legenda legenda-segundos">Segundos</p>
</div>
</div>
<div class="info">
<p id=""></p>
</div>
<a href="https://twitch.tv/eskimozin" target="_blank" rel="noopener noreferrer">
<div class='button'>
<p id="texto-botao">Ir para a Twitch</p>
</div>
</a>
</div>
<script src="script.js"></script>
<!-- Code injected by live-server -->
<script>
// <![CDATA[ <-- For SVG support
if ('WebSocket' in window) {
(function () {
function refreshCSS() {
var sheets = [].slice.call(document.getElementsByTagName("link"));
var head = document.getElementsByTagName("head")[0];
for (var i = 0; i < sheets.length; ++i) {
var elem = sheets[i];
var parent = elem.parentElement || head;
parent.removeChild(elem);
var rel = elem.rel;
if (elem.href && typeof rel != "string" || rel.length == 0 || rel.toLowerCase() == "stylesheet") {
var url = elem.href.replace(/(&|\?)_cacheOverride=\d+/, '');
elem.href = url + (url.indexOf('?') >= 0 ? '&' : '?') + '_cacheOverride=' + (new Date().valueOf());
}
parent.appendChild(elem);
}
}
var protocol = window.location.protocol === 'http:' ? 'ws://' : 'wss://';
var address = protocol + window.location.host + window.location.pathname + '/ws';
var socket = new WebSocket(address);
socket.onmessage = function (msg) {
if (msg.data == 'reload') window.location.reload();
else if (msg.data == 'refreshcss') refreshCSS();
};
if (sessionStorage && !sessionStorage.getItem('IsThisFirstTime_Log_From_LiveServer')) {
console.log('Live reload enabled.');
sessionStorage.setItem('IsThisFirstTime_Log_From_LiveServer', true);
}
})();
}
else {
console.error('Upgrade your browser. This Browser is NOT supported WebSocket for Live-Reloading.');
}
// ]]>
</script>
</body>
</html>