mirror of
https://github.com/SrIzan10/vdo.ninja.git
synced 2026-05-01 11:05:24 +00:00
187 lines
5.0 KiB
HTML
187 lines
5.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>VDON Chat Overlay</title>
|
|
<style>
|
|
@font-face {
|
|
font-family: 'Cousine';
|
|
src: url('fonts/Cousine-Bold.ttf') format('truetype');
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0 10px;
|
|
height: 100%;
|
|
border: 0;
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
position: absolute;
|
|
bottom: 0;
|
|
overflow: hidden;
|
|
max-width: 100%;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
#chat-overlay {
|
|
margin: 0;
|
|
background-color: black;
|
|
padding: 8px 8px 0px 8px;
|
|
color: white;
|
|
font-family: Cousine, monospace;
|
|
font-size: 3.2em;
|
|
line-height: 1.1em;
|
|
letter-spacing: 0.0em;
|
|
text-transform: uppercase;
|
|
text-shadow: 0.05em 0.05em 0px rgba(0,0,0,1);
|
|
max-width: 100%;
|
|
word-wrap: break-word;
|
|
overflow-wrap: break-word;
|
|
word-break: break-all;
|
|
hyphens: auto;
|
|
display: inline-block;
|
|
}
|
|
|
|
#chat-overlay:empty {
|
|
display:none!important;
|
|
}
|
|
a {
|
|
color: white;
|
|
font-size: 1.2em;
|
|
text-transform: none;
|
|
word-wrap: break-word;
|
|
overflow-wrap: break-word;
|
|
word-break: break-all;
|
|
hyphens: auto;
|
|
}
|
|
|
|
#input-form {
|
|
background-color: #f0f0f0;
|
|
padding: 20px;
|
|
border-radius: 5px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
#input-form label {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
#input-form input {
|
|
width: 100%;
|
|
padding: 5px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#input-form button {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
padding: 10px 15px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#input-form button:hover {
|
|
background-color: #45a049;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="chat-overlay"></div>
|
|
<div id="input-form" style="display: none;">
|
|
<h2>Chat Overlay Configuration</h2>
|
|
<label for="room">Room:</label>
|
|
<input type="text" id="room" name="room">
|
|
<label for="view">View:</label>
|
|
<input type="text" id="view" name="view">
|
|
<label for="password">Password:</label>
|
|
<input type="password" id="password" name="password">
|
|
<button onclick="startOverlay()">Start Overlay</button>
|
|
</div>
|
|
|
|
<script>
|
|
(function (w) {
|
|
w.URLSearchParams = w.URLSearchParams || function (searchString) {
|
|
var self = this;
|
|
self.searchString = searchString;
|
|
self.get = function (name) {
|
|
var results = new RegExp("[\?&]" + name + "=([^&#]*)").exec(self.searchString);
|
|
return results == null ? null : decodeURI(results[1]) || 0;
|
|
};
|
|
};
|
|
})(window);
|
|
|
|
var urlParams = new URLSearchParams(window.location.search);
|
|
|
|
function loadIframe() {
|
|
var view = urlParams.get("view") || "";
|
|
var room = urlParams.get("room") || "";
|
|
var password = urlParams.get("password") || "";
|
|
|
|
if (!view && !room) {
|
|
document.getElementById('input-form').style.display = 'block';
|
|
return;
|
|
}
|
|
|
|
var iframe = document.createElement("iframe");
|
|
iframe.allow = "autoplay";
|
|
var srcString = "./?datamode&label=chatOverlay" +
|
|
(room ? "&scene&room=" + room : "") +
|
|
(view ? "&view=" + view : "") +
|
|
(password ? "&password=" + password : "");
|
|
|
|
iframe.src = srcString;
|
|
iframe.style.width = "0";
|
|
iframe.style.height = "0";
|
|
iframe.style.border = "0";
|
|
|
|
document.body.appendChild(iframe);
|
|
|
|
var eventMethod = window.addEventListener ? "addEventListener" : "attachEvent";
|
|
var eventer = window[eventMethod];
|
|
var messageEvent = eventMethod === "attachEvent" ? "onmessage" : "message";
|
|
|
|
eventer(messageEvent, function (e) {
|
|
if (e.source != iframe.contentWindow) return;
|
|
console.log(e);
|
|
if ("gotChat" in e.data) {
|
|
logData(e.data.gotChat.label, e.data.gotChat.msg);
|
|
}
|
|
});
|
|
}
|
|
|
|
function startOverlay() {
|
|
var room = document.getElementById('room').value;
|
|
var view = document.getElementById('view').value;
|
|
var password = document.getElementById('password').value;
|
|
|
|
var newUrl = window.location.pathname + '?';
|
|
if (room) newUrl += 'room=' + encodeURIComponent(room) + '&';
|
|
if (view) newUrl += 'view=' + encodeURIComponent(view) + '&';
|
|
if (password) newUrl += 'password=' + encodeURIComponent(password) + '&';
|
|
newUrl = newUrl.slice(0, -1); // Remove the trailing '&' or '?'
|
|
|
|
window.location.href = newUrl;
|
|
}
|
|
|
|
function logData(type, data) {
|
|
var entry = document.createElement('div');
|
|
if (type) {
|
|
var typeElement = document.createElement('i');
|
|
typeElement.textContent = type.replace(/_/g, ' ');
|
|
entry.appendChild(typeElement);
|
|
entry.appendChild(document.createTextNode(" "));
|
|
}
|
|
var message = document.createElement('span');
|
|
message.textContent = data;
|
|
entry.appendChild(message);
|
|
document.getElementById('chat-overlay').prepend(entry);
|
|
}
|
|
|
|
window.onload = loadIframe;
|
|
</script>
|
|
</body>
|
|
</html>
|