-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.htm
24 lines (24 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<title>Game</title>
<script type="text/javascript" src="scripts/jquery-1.5.1.js"></script>
<script type="text/javascript" src="scripts/jquery.gamequery-0.5.1.js"></script>
<script type="text/javascript" src="scripts/mygame.js"></script>
<script type="text/javascript">
$(document).ready(function(){
mygame.init();
});
</script>
</head>
<body>
<div id="thegame" style="width: 700px; height: 250px; background: black;">
<div id="welcomeScreen">
<div style="position: absolute; text-align: center; top: 40%; width: 100%;">
<div id="loadingBar" style="height: 15px; margin: auto; position: relative; width: 0px; background: red;"></div><br />
<div style="font-size:44px; font-family:sans-serif; color:white;"><a style="cursor: pointer;" id="startbutton">Start Game</a></div>
</div>
</div>
</div>
</body>
</html>