-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (27 loc) · 843 Bytes
/
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
<html>
<head>
<title>Cyclone Debbie Quick Data Vis</title>
<style>
#canvas {
height:100vh;
background:black;
width:100vw;
left:0;
position: absolute;
top:0;
bottom:0;
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
-ms-interpolation-mode: nearest-neighbor;
}
</style>
</head>
<body>
<canvas id="canvas" width="1000" height="1000">
Your browser does not support the HTML5 canvas tag.
</canvas>
<script src="./main.js"></script>
</body>
</html>