Mirai's Miscellaneous Misadventures
M15 / index.html
1<!doctype html>
2<html lang="en">
3<meta charset="utf-8">
4
5<title>Mirai’s Miscellaneous Misadventures</title>
6
7<style>
8
9html { touch-action: manipulation; }
10body { margin: 0; background: #000; }
11html, body { height: 100%; display: grid; }
12canvas {
13 width: 100%; height: 100%;
14 image-rendering: crisp-edges;
15 image-rendering: pixelated;
16 object-fit: contain;
17}
18
19</style>
20
21<script type="module" src="main.js"></script>
22
23<canvas></canvas>