better scrolling
This commit is contained in:
parent
baf29cefa5
commit
5a70cafef2
1 changed files with 28 additions and 33 deletions
|
@ -3,44 +3,39 @@ const statusLineElement2 = statusLineElement.cloneNode();
|
||||||
statusLineElement2.id = "status-line2";
|
statusLineElement2.id = "status-line2";
|
||||||
document.body.appendChild(statusLineElement2);
|
document.body.appendChild(statusLineElement2);
|
||||||
|
|
||||||
let status = "Streamboy is connecting...";
|
let status = { blocks: [{ text: "Streamboy is connecting...", color: "#ffffff" }] };
|
||||||
let scroll = 0;
|
let scroll = 0;
|
||||||
|
|
||||||
setInterval(() => {
|
setInterval(() => {
|
||||||
if (scroll >= status.length) scroll = 0;
|
let string = "";
|
||||||
// if (scroll == 0) {
|
for (const i in status.blocks) {
|
||||||
// statusLineElement.textContent = status;
|
string += status.blocks[i].text;
|
||||||
// } else {
|
if (i < status.blocks.length - 1) string += " | ";
|
||||||
// let string = "";
|
}
|
||||||
// string += status.slice(scroll);
|
|
||||||
// string += status.slice(0, scroll);
|
if (scroll >= string.length + 9) scroll = 0;
|
||||||
// statusLineElement.textContent = string;
|
const stringWidth = 8 * string.length + 72;
|
||||||
// }
|
if (8 * string.length <= statusLineElement.parentElement.clientWidth) {
|
||||||
const stringWidth = 8 * status.length;
|
scroll = 0;
|
||||||
statusLineElement.style.left = `${-8 * scroll}px`;
|
statusLineElement.style.removeProperty("position");
|
||||||
statusLineElement2.style.left = `${-8 * scroll + stringWidth}px`;
|
statusLineElement.style.removeProperty("left");
|
||||||
// console.log(statusLineElement.style.left)
|
statusLineElement2.style.display = "none";
|
||||||
statusLineElement.textContent = status;
|
statusLineElement.textContent = string;
|
||||||
statusLineElement2.textContent = status;
|
statusLineElement2.textContent = string;
|
||||||
scroll += 1;
|
} else {
|
||||||
}, 750);
|
statusLineElement.style.position = "absolute";
|
||||||
|
statusLineElement.style.left = `${-8 * scroll}px`;
|
||||||
|
statusLineElement2.style.position = "absolute";
|
||||||
|
statusLineElement2.style.left = `${-8 * scroll + stringWidth}px`;
|
||||||
|
statusLineElement2.style.removeProperty("display");
|
||||||
|
scroll += 1;
|
||||||
|
statusLineElement.textContent = string + " | ";
|
||||||
|
statusLineElement2.textContent = string + " | ";
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
|
||||||
const socket = new WebSocket("ws://localhost:8012");
|
const socket = new WebSocket("ws://localhost:8012");
|
||||||
|
|
||||||
socket.addEventListener("message", (event) => {
|
socket.addEventListener("message", (event) => {
|
||||||
const data = JSON.parse(event.data);
|
status = JSON.parse(event.data);
|
||||||
|
|
||||||
let string = "";
|
|
||||||
for (const block of data.blocks) {
|
|
||||||
string += block.text;
|
|
||||||
string += " | ";
|
|
||||||
}
|
|
||||||
status = string;
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// const status = {
|
|
||||||
// blocks: [
|
|
||||||
// "Something Fun For Everyone With Streamboy!!!!!!!! git.jeevio.xyz/jeeves/streamboy",
|
|
||||||
// "♪ Bonhomme de Neige (EarthBound) - Ridley Snipes feat. Earth Kid",
|
|
||||||
// ],
|
|
||||||
// };
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue