Initial commit step0

This commit is contained in:
2026-06-12 18:48:27 +02:00
commit 7093fb49a0
11 changed files with 330 additions and 0 deletions

33
step0/index.html Normal file
View File

@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>step0</title>
<style>
body {
margin: 0;
padding: 0;
background-color: black;
overflow: hidden;
}
canvas {
position: relative;
width: 100%;
height: 100%;
image-rendering: pixelated;
}
#input {
position: absolute;
left: 50%;
top: 50%;
width: 0;
height: 0;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<script src="main.js"></script>
</body>
</html>