-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
39 lines (37 loc) · 1.22 KB
/
index.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
<!DOCTYPE HTML>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<style>
#requestContainer {
padding: 50px;
}
.request {
color: white;
display: block;
font-weight: bold;
}
</style>
</head>
<body style="background-color: black">
<div class="web-gui">
<div class="request" id="requestContainer">
</div>
</div>
</body>
<script>
const socket = io('http://localhost:2300');
const requestContainer = document.getElementById('requestContainer');
console.log(requestContainer)
socket.on('soundcheck', (data) => {
console.log(data);
});
socket.on('request', (data) => {
const newRequestNode = document.createElement('a');
newRequestNode.setAttribute('class', 'request');
newRequestNode.innerText = data;
requestContainer.appendChild(newRequestNode);
})
</script>
</html>