This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
47 lines (45 loc) · 2.2 KB
/
index.htm
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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" style="width:100%;height:100%;overflow:hidden;">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>4X-game</title>
<meta name="description" content="yeah">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link rel="stylesheet" href="main.css"> -->
</head>
<body style="margin:0;width:100%;height:100%;position:relative;">
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div id="loading" style="color:whitesmoke;background-color: rgba(0,0,0,0.9);width:100%;height:100%;position:absolute;z-index:1000000;text-align:center;margin:auto;"><h1><strong><i>Loading ...</i></strong></h1></div>
<canvas style="width:100%;height:100%;position:absolute;"></canvas>
<div id="settings" hidden></div>
<div id="bottom-bar" style="height:150px;width:100%;background-color:rgba(0,0,0,0.4);position:absolute;bottom:0;display:none;">
<h3 style="color:white"></h3>
<p></p>
</div>
<script src="libraries/pathfinding.js"></script>
<script src="buildings.js"></script>
<script src="map.js"></script>
<script src="units.js"></script>
<script src="canvasSetup.js"></script>
<script src="main.js"></script>
<div id="loaded-images" hidden>
<img name="Test_image1" src="assets/Test_image1.png">
<img name="Test_image2" src="assets/Test_image2.png">
<img name="Ocean" src="assets/Ocean.png">
<img name="Desert" src="assets/Desert.png">
<img name="Grassland" src="assets/Grassland.png">
<img name="Forest" src="assets/Forest.png">
<img name="Tree" src="assets/Tree.png">
<img name="Mountain" src="assets/Mountain.png">
<img name="Solar_panel" src="assets/Solar_panel.png">
</div>
</body>
</html>