-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnormal.html
62 lines (46 loc) · 1.76 KB
/
normal.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
52
53
54
55
56
57
58
59
60
61
62
<html>
<head>
<link rel='stylesheet' type='text/css' href='style.css'/>
<script src="jquery.min.js"></script>
<script type="text/javascript" src="store.js"></script>
<script type="text/javascript" src="script.js"></script>
<script type="text/javascript" src="scriptNormal.js"></script>
<meta name="viewport" content="width=device-width, height=device-height, user-scalable=no"/>
<meta charset="utf-8"/>
<title>Squane</title>
</head>
<body>
<span onclick="endGame()"><img id="ingame-logo" onclick="setScore();" src="images/squane-logo.png" class="top-image"></span>
<table style="width: 95%;margin-left:1%;margin-right:4%;">
<tr>
<td style="width:35%;">
<b><p id="lvl" style="text-align:left;"></p></b>
</td>
<td style="text-align:right;width:65%;">
<span id="addedMoney"></span>
<b style="font-size:20px; text-align:right;">
<img width="22px" style="display:inline;vertical-align: top;" src="images/sqoin.png">
<span id="moneyContent" style="vertical-align:bottom;">0</span>
</b>
</td>
</tr>
</table>
<div class="scoreContainer">
<div id="score0" class="scoreLine" style="margin-top:0px;"></div>
<div id="score1" class="scoreLine"></div>
<div id="score2" class="scoreLine"></div>
<div id="score3" class="scoreLine"></div>
<div id="score4" class="scoreLine"></div>
<div id="score5" class="scoreLine"></div>
<div id="score6" class="scoreLine"></div>
</div>
<div class="scoreNameContainer" style="margin-top:-20px;">
<p id="score" style="margin:0px;text-align:center; font-weight:bold;">0</p>
</div>
<div class="game-table" id="gameTable">
</div>
<div id="currentPlace" align="center">
</div>
<script type="text/javascript">getMoney();</script>
</body>
</html>