aboutsummaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
authorMaksymilian Jopek <maks@jopek.eu>2023-02-27 22:35:28 +0100
committerMaksymilian Jopek <maks@jopek.eu>2023-02-27 22:35:28 +0100
commit4db4b5791cd1359519933871ab65412acafb71d7 (patch)
tree24c9b78757e23793384481691745c8d3ff0db621 /index.html
parent9f7331ca8b60cd91ee2493fa1872410c5755d1bd (diff)
download1942-4db4b5791cd1359519933871ab65412acafb71d7.tar.gz
1942-4db4b5791cd1359519933871ab65412acafb71d7.tar.zst
1942-4db4b5791cd1359519933871ab65412acafb71d7.zip
v1.1.0
Refactor of loading screen Faster loading time by concurently awaiting all promises Minor bug fix Added litle help menu at the start of the game
Diffstat (limited to 'index.html')
-rw-r--r--index.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/index.html b/index.html
index cb2de82..4f8a6e3 100644
--- a/index.html
+++ b/index.html
@@ -8,8 +8,11 @@
<title>1942</title>
</head>
-<body bgcolor="black">
- <canvas width="320" height="200" style="background-color: grey;"></canvas>
+<body>
+ <div class="h-gradient">GAME IS LOADING</div>
+ <canvas width="320" height="200"></canvas>
+ <button>START THE GAME</button>
+ <h1 class="help">/ is fire button, WSAD to move, spacebar to roll</h1>
<script type="module" src="/src/main.ts"></script>
</body>