i2pd-tools/websocket-ui/index.html

40 lines
756 B
HTML
Raw Normal View History

2016-10-20 16:02:25 +02:00
<html>
<head>
<title> websocket events </title>
<script type="text/javascript" src="leftpad.js">
</script>
2016-10-21 01:59:39 +02:00
<style>
pre#log {
z-index: 1;
color: white;
position: fixed;
right: 0px;
top: 0px;
font-size: 10px;
box-shadow 0px 0px 10px 10px #1a1a1a;
backgroud: rgba(1,1,1,0.5);
border-radius: 5px;
}
body, canvas#main {
background: #222;
}
canvas#main {
position: fixed;
left: 0px;
top: 0px;
z-index: -1;
}
</style>
2016-10-20 16:02:25 +02:00
</head>
2016-10-21 01:59:39 +02:00
<body>
<pre id="log"></pre>
<canvas id="main">
2016-10-20 16:02:25 +02:00
</canvas>
<script type="text/javascript" src="ui.js">
</script>
</body>
</html>