-
Notifications
You must be signed in to change notification settings - Fork 0
/
abso.html
72 lines (66 loc) · 1.35 KB
/
abso.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<title>Trackpad</title>
<style>
body {
width: 100vw;
height: 100vh;
display: flex;
flex-wrap: wrap;
margin: 0px;
background: black;
padding: 0px;
}
body > * {
flex-grow: 1;
width:200px;
}
.holder {
display: flex;
justify-content: center;
flex-wrap: wrap;
align-items: stretch;
}
.holder * {
flex-grow:1;
}
.holder input {
text-align: center;
border: none;
padding: 0px;
flex: 0 0 100%;
}
.holder div {
background: #333;
margin: 1px;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<script src="/socket.io/socket.io.js"></script>
<script>
var socket = io();
var canvas = document.createElement("div");
var size = window.innerWidth > window.innerHeight ? window.innerHeight : window.innerWidth;
canvas.addEventListener("touchmove", event => {
event.preventDefault();
event.stopPropagation();
socket.emit("abso",{
x: event.touches[0].clientX / size,
y: event.touches[0].clientY / size
})
})
canvas.addEventListener("touchstart", event => {
event.preventDefault();
event.stopPropagation();
socket.emit("abso",{
x: event.touches[0].clientX / size,
y: event.touches[0].clientY / size
})
})
document.body.appendChild(canvas);
</script>
</body>
</html>