-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (92 loc) · 2.52 KB
/
Copy pathindex.html
File metadata and controls
114 lines (92 loc) · 2.52 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
<html lang="en">
<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</title>
<script src="https://cdn.jsdelivr.net/npm/comfy.js@latest/dist/comfy.min.js"></script>
<style>
html,
body {
margin: 0;
font-family: monospace;
color: hsl(197, 62%, 32%);
}
#chat {
width: 400px;
height: 350px;
overflow-y: auto;
display: flex;
flex-direction: column-reverse;
}
#chat::-webkit-scrollbar {
display: none;
}
#chat ul {
list-style-type: none;
list-style-position: outside;
}
#chat li {
background-color: hsl(196, 58%, 93%);
box-sizing: border-box;
padding: 1rem 10px;
margin-bottom: 10px;
border: 4px solid;
}
#chat li.mod {
background-color: hsl(166, 60%, 93%);
color: hsl(166, 62%, 32%);
}
#chat li.sub {
background-color: hsl(235, 61%, 93%);
color: hsl(235, 62%, 32%);
}
#chat blockquote {
font-size: 1.2rem;
}
/* Animation */
@keyframes slide-in-left {
from {
transform: translateX(400px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
#chat li:not(:last-of-type) {
opacity: 0.5;
}
#chat li:last-of-type {
animation-name: slide-in-left;
animation-duration: 0.15s;
animation-timing-function: ease-in;
}
</style>
</head>
<body>
<div id="chat">
<ul>
</ul>
</div>
</body>
<script>
var chat = document.querySelector("#chat>ul");
ComfyJS.onChat = (user, message, flags, self, extra) => {
var newMessage = document.createElement("li");
if (message.mod) {
newMessage.classList.add('mod');
}
if (message.subscriber) {
newMessage.classList.add('sub');
}
var text = document.createElement("blockquote");
newMessage.innerText = user;
text.innerText = message;
newMessage.append(text);
chat.append(newMessage);
}
ComfyJS.Init("wcanterburybell");
</script>
</html>