-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlucian-chat.html
40 lines (29 loc) · 1.38 KB
/
lucian-chat.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
<!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">
<title>Twitch Chat Overlay by Sir Lucian</title>
<script src="https://unpkg.com/twemoji@latest/dist/twemoji.min.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- Item will be appened to this layout -->
<div id="log" class="sl__chat__layout"></div>
<!-- Chat Item -->
<script type="text/template" id="chatlist_item">
<div class="wrapper" data-from="{from}" data-id="{messageId}" id="{messageId}-wrapper">
<div class="meta">
<div class="username_box" id="{messageId}-username-box">
<span class="badges badges-inv"></span>
<span class="badges badges-topleft"></span>
<span class="name">{from}</span>
</div>
</div>
<div class="message_box" id="{messageId}-message-box">
<span class="message">{message}</span>
</div>
</div>
</script>
</body>
</html>