-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (50 loc) · 1.62 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TwitchSweeper</title>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="98.css">
<script src="game.js"></script>
<script>
// https://github.com/obsproject/obs-browser/blob/master/README.md
try {
window.obsstudio.getStatus(function (status) {
console.log(status)
})
} catch (e) { }
</script>
</head>
<body>
<div class="window" style="display: inline-block">
<div class="title-bar">
<div class="title-bar-text">TWITCHSWEEPER</div>
<div class="title-bar-controls title-bar-controls-right">
<button aria-label="Minimize"></button>
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<table id="gameheader">
<tr>
<th id="score">909</th>
<th id="action" style="text-align: center"><button>:)</button></th>
<th id="time">909</th>
</tr>
</table>
<table id="game">
<tr>
<td>loading</td>
</tr>
</table>
</div>
<div class="status-bar">
<p class="status-bar-field" id="info"></p>
<p class="status-bar-field" id="status"></p>
<p class="status-bar-field" id="wip">wip</p>
</div>
</div>
<script src="main.js"></script>
</body>
</html>