This commit is contained in:
2026-08-19 17:17:46 +02:00
parent a40f10ab22
commit 2ae236cc67
5 changed files with 64 additions and 25 deletions
+20 -2
View File
@@ -3,9 +3,27 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello typescript</title>
<title>Metaballs</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
background-color: #000000;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
#canvas {
display: block;
width: 100%;
height: 100%;
}
</style>
</head>
<body style="margin: 0; padding 0; overflow: hidden; background-color: #000000">
<body>
<canvas id="canvas" tabindex="0"></canvas>
<script type="module" src="./metaballs.js"></script>
</body>