Created
August 5, 2020 08:50
-
-
Save hammertoe/3c58176e60820d39da7ca84c5b3377c1 to your computer and use it in GitHub Desktop.
IBM stream chat overlay
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&display=swap" rel="stylesheet"> | |
<style type="text/css"> | |
ul { list-style: none; padding: 0; } | |
body { background-color: black; font-family: 'IBM Plex Sans'; } | |
a { color: white; } | |
.who { color: #bb8eff; float: left; } | |
.who::after { content: ":" } | |
.what { color: white; margin-left: 0.5em; } | |
.container { | |
height: 100px; | |
overflow: auto; | |
display: flex; | |
flex-direction: column-reverse; | |
} | |
</style> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/jQuery-linkify/2.1.9/linkify.min.js" integrity="sha256-b8aRDYEOoOLGpyaXMI3N2nWUbjSeQ2QxzKjmPnCa4yA=" crossorigin="anonymous"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/jQuery-linkify/2.1.9/linkify-string.min.js" integrity="sha256-FyCQ9XVSgI4tV3R0ldp8nZkLYPYBwRznvSeFME7tXJ8=" crossorigin="anonymous"></script> | |
<script src="https://github.com/tmijs/tmi.js/releases/download/v1.5.0/tmi.min.js"></script> | |
<script> | |
const client = new window.tmi.Client({ | |
options: { debug: false }, | |
connection: { | |
reconnect: true, | |
secure: true | |
}, | |
channels: [ window.location.hash ] | |
}); | |
client.connect(); | |
client.on('message', (channel, tags, message, self) => { | |
var messages = $("#messages"); | |
var message = linkifyStr(message); | |
messages.append($("<li>").html(`<span class="who">${tags.username}</span> | |
<span class="what">${message}</span>`)); | |
// console.log(message); | |
}); | |
</script> | |
<body> | |
<div class="container"> | |
<div> | |
<ul id="messages"> | |
<li><span class="who">Chat</span><span class="what">Welcome to the show!</span></li> | |
</ul> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment