feat(#1): add image loader capabilities

This commit is contained in:
Juan Sebastián Montoya 2024-07-11 00:44:13 -05:00
parent 07c5428f7c
commit 6e5966e79e
17 changed files with 104 additions and 45 deletions

40
index.html Normal file
View file

@ -0,0 +1,40 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Evolver</title>
<style>
html,
body {
margin: 0;
height: 100%;
width: 100%;
}
#game {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
}
canvas {
background-color: #fbf7f3;
border: 1px solid black;
image-rendering: pixelated;
image-rendering: crisp-edges;
}
</style>
</head>
<body>
<div id="game">
<canvas></canvas>
</div>
<script type="module" src="src/index.js"></script>
</body>
</html>