-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 807 Bytes
/
index.html
File metadata and controls
39 lines (39 loc) · 807 Bytes
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>
<title>mode7.js demo</title>
<style>
html, body {
margin: 0;
padding: 0;
background: #333;
color: #f3f3f3;
}
.hidden {
opacity: 0;
visibility: hidden;
display: none;
}
.center {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
canvas {
transform: scale(1.2);
}
</style>
</head>
<body>
<div class="center">
<div>
<canvas id="canv"></canvas>
</div>
</div>
<img id="ci1" src="maps/ci1_resized.png" class="hidden">
<img id="bgd" src="maps/me.png" class="hidden">
<script src="mode7.js"></script>
<script src="demo.js"></script>
</body>
</html>