add 003 beginnings

This commit is contained in:
41666 2023-10-09 00:08:06 -04:00
parent 778873c9ce
commit 28faa03ac6
8 changed files with 47 additions and 15 deletions

25
html/003-scene/index.html Normal file
View file

@ -0,0 +1,25 @@
<!DOCTYPE html>
<meta charset="utf-8" />
<title>com.mekanoe.art // 003-scene</title>
<style>
html,
body {
margin: 0;
padding: 0;
overflow: hidden;
background-color: black;
color: white;
}
main {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
</style>
<link rel="stylesheet" href="/work.css" />
<main>
<canvas id="canvas" width="1280" height="720"></canvas>
<div id="telemetry">XX.X FPS (XX.X ms)</div>
</main>
<script src="/003-scene/main.js" type="module"></script>