move: implement circle movement

This commit is contained in:
2026-08-05 20:49:53 +02:00
parent 8032bdd31a
commit 0136981551
3 changed files with 83 additions and 48 deletions
+4 -1
View File
@@ -4,8 +4,11 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello typescript</title>
<style>
canvas { display: block; width: 100vw; height: 100vh; }
</style>
</head>
<body style="margin: 0; padding 0; overflow: hidden; background-color: #000000">
<body style="margin: 0; padding: 0; overflow: hidden; background-color: #000000">
<canvas id="canvas" tabindex="0"></canvas>
<script type="module" src="./move.js"></script>
</body>