-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.html
51 lines (46 loc) · 1.11 KB
/
home.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<title>AirWar</title>
<link rel = "icon" href =
"assets/icon/star.png"
type = "image/x-icon">
<meta charset = "utf-8">
<meta name = "viewport" content = "width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
position: absolute;
width: 100%;
height: 100%;
top : 0px;
left : 0px;
margin: 0;
padding : 0;
border: 0;
overflow: hidden;
}
#hud {
font-family: "verdana", monospace;
color:rgb(255, 0, 55);
position: absolute;
text-align: center;
top: 8px;
width: 100%;
display:block;
z-index: 80;
}
</style>
</head>
<body>
<script src = "libs/three.min.js"></script>
<script src = "libs/OrbitControls.js"></script>
<script src = "libs/inflate.min.js"></script>
<script src = "libs/dat.gui.min.js"></script>
<script src = "loaders/GLTFLoader.js"></script>
<script src = "scripts/scene.js"></script>
<script src = "scripts/showroom.js"></script>
<script src = "scripts/main.js"></script>
<div id="hud">
</div>
</body>
</html>