Skip to content

Commit 08948ef

Browse files
committed
77
1 parent 4f7cfcd commit 08948ef

11 files changed

+135
-7523
lines changed

.vscode/settings.json

-3
This file was deleted.

README.md

-15
This file was deleted.

build/.gitignore

-2
This file was deleted.

dist/31d6cfe0d16ae931b73c.ico

Whitespace-only changes.

dist/bundle.js

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.html

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>3D Game Scene</title>
7+
<script defer src="bundle.js"></script></head>
8+
<style>
9+
body { margin: 0; overflow: hidden; }
10+
canvas { display: block; }
11+
#menu {
12+
display: none;
13+
position: fixed;
14+
top: 0;
15+
left: 0;
16+
width: 100%;
17+
height: 100%;
18+
background-color: rgba(0, 0, 0, 0.5);
19+
}
20+
#menu h1 {
21+
color: white;
22+
text-align: center;
23+
margin-top: 20%;
24+
}
25+
#menu button {
26+
display: block;
27+
margin: 20px auto;
28+
padding: 10px 20px;
29+
font-size: 20px;
30+
cursor: pointer;
31+
}
32+
</style>
33+
<body>
34+
<div id="menu">
35+
<h1>Game Menu</h1>
36+
<button id="resumeButton">Resume Game</button>
37+
</div>
38+
<link rel="icon" href="31d6cfe0d16ae931b73c.ico">
39+
40+
</body>
41+
</html>

0 commit comments

Comments
 (0)