-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (42 loc) · 1.38 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
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>SCHUD</title>
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
<style>
canvas {
position: absolute;
display: block;
transform-origin: center;
/* border: 1px solid white; */
}
img#base {
width: 100%;
/* position: absolute; */
}
body,
html {
width: 100%;
margin: 0;
padding: 0;
background-color: rgb(96, 252, 6);
overflow: hidden;
}
</style>
</head>
<body>
<img src="./base.png" id="base" alt=""></img>
<canvas id="lpad" width="200" height="200"></canvas>
<canvas id="rpad" width="200" height="200"></canvas>
<canvas id="buttonpad" width="200" height="200"></canvas>
<canvas id="rtrigger" width="200" height="200"></canvas>
<canvas id="ltrigger" width="200" height="200"></canvas>
<canvas id="lbumper" width="200" height="200"></canvas>
<canvas id="rbumper" width="200" height="200"></canvas>
<canvas id="stick" width="200" height="200"></canvas>
<canvas id="lgrip" width="200" height="200"></canvas>
<canvas id="rgrip" width="200" height="200"></canvas>
<canvas id="steambutton" width="200" height="200"></canvas>
<script src="./src/script.js"></script>
</body>
</html>