-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo.html
29 lines (26 loc) · 809 Bytes
/
demo.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>joke.town</title>
<link rel="stylesheet" href="/assets/demo.css" />
</head>
<body>
<div class="screen">
<iframe src="/screen" height="1680" width="1050" frameborder="0"></iframe>
<button class="down"></button>
<button class="up"></button>
</div>
<div class="preload up"></div>
<div class="preload down"></div>
<script>
const IOPORT = "{{IOPORT}}";
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js"></script>
<script src="/assets/demo.js"></script>
</body>
</html>