-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAlerts.html
50 lines (45 loc) · 1.34 KB
/
Alerts.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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="CSS/alerts.css" />
<script src="https://unpkg.com/@streamerbot/client/dist/streamerbot-client.js"></script>
<script src="scripts/config.js"></script>
<script src="scripts/main.js"></script>
<title>Streamer.bot websocket alerts</title>
</head>
<body>
<div id="alertContainer"></div>
<audio id="sound"></audio>
<template id="twitchAlertTemplate">
<div class="alert twitch-alert bounce-in">
<div id="alertImageWrapper">
<img src="" id="alertImage" class="bounce-in-img" />
</div>
<div id="details">
<h1 id="title"></h1>
<h2 id="message"></h2>
</div>
</div>
</template>
<template id="kofiAlertTemplate">
<div class="alert kofi-alert bounce-in">
<div id="alertImageWrapper">
<img src="" id="alertImage" class="bounce-in-img" />
</div>
<div id="details">
<h1 id="title"></h1>
<h2 id="message"></h2>
</div>
</div>
</template>
<script>
if (useCSSVariables) {
setCSSVars();
}
attachListeners();
</script>
</body>
</html>