-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
141 lines (134 loc) · 5.62 KB
/
index.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!--
/////////////////////////////////////////////////////////////////
|\ /|
|\\ //|
: ,> `´ ̄`´ < ′ 契約の予感ッ・・・!!
___V V_∧,、______________
 ̄ ̄ ̄i{ ● ● }i ̄'`'`` ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄
八//// 、_,_,////八
. / 个 . _ _ .个 ',
_/ il ,' '. li ',__
さぁ早く 僕と契約を!
Emoji from http://momokami.net/kotonoha/qb.html
////////////////////////////////////////////////////////////////////
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="keywords" content="鹿目圆香, 小圆,晓美焰,小焰,madoka,homura,鹿目まどか, 暁美ほむら,Puella Magi Madoka Magica,まどか☆マギカ,魔法少女小圆">
<meta name="description" content="Pacomura - A Madoka Magica Pacman Game">
<link rel="icon" href="img/favicon.ico">
<!-- build:css styles/mainTest.css -->
<link rel="stylesheet" type="text/css" href="bower_components/normalize-css/normalize.css">
<link rel="stylesheet" type="text/css" href="bower_components/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="styles/main.css">
<!-- endbuild -->
<title>Pacomura Ver1.1</title>
</head>
<body>
<canvas id="bgCanvas"></canvas>
<canvas id="enemyCanvas"></canvas>
<canvas id="playerCanvas"></canvas>
<canvas id="infoCanvas"></canvas>
<div class="high_score_btn" onclick="showHighScore()"><h4>High Score</h4></div>
<div class="high_score_board">
<p class="closeHighBrd" onclick="hideHighScore()">x</p>
<table class="table">
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>Score</th>
<th class="timeStamp">TimeStamp</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td class="userName">H2O2</td>
<td class="userScore">0</td>
<td class="timeStamp">2017-01-01</td>
</tr>
<tr>
<th scope="row">2</th>
<td class="userName">CuSO4</td>
<td class="userScore">0</td>
<td class="timeStamp">2017-01-01</td>
</tr>
<tr>
<th scope="row">3</th>
<td class="userName">NaOH</td>
<td class="userScore">0</td>
<td class="timeStamp">2017-01-01</td>
</tr>
<tr>
<th scope="row">4</th>
<td class="userName">H2SO4</td>
<td class="userScore">0</td>
<td class="timeStamp">2017-01-01</td>
</tr>
<tr>
<th scope="row">5</th>
<td class="userName">HCL</td>
<td class="userScore">0</td>
<td class="timeStamp">2017-01-01</td>
</tr>
<tr>
<th scope="row">6</th>
<td class="userName">C6H6</td>
<td class="userScore">0</td>
<td class="timeStamp">2017-01-01</td>
</tr>
<tr>
<th scope="row">7</th>
<td class="userName">CH4</td>
<td class="userScore">0</td>
<td class="timeStamp">2017-01-01</td>
</tr>
<tr>
<th scope="row">8</th>
<td class="userName">HCHO</td>
<td class="userScore">0</td>
<td class="timeStamp">2017-01-01</td>
</tr>
<tr>
<th scope="row">9</th>
<td class="userName">SiO4</td>
<td class="userScore">0</td>
<td class="timeStamp">2017-01-01</td>
</tr>
<tr>
<th scope="row">10</th>
<td class="userName">CH3CH2OH</td>
<td class="userScore">0</td>
<td class="timeStamp">2017-01-01</td>
</tr>
</tbody>
</table>
</div>
<div class="message"></div>
<div class="wrapper jumbotron"></div>
<div class="icons"><a href="https://github.com/H2O-2/Pacomura" target="_blank"><i class="fa fa-3x fa-github" aria-hidden="true"></i></a></div>
<!-- build:js scripts/main.js -->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="scripts/varAndConst.js"></script>
<script src="scripts/global.js"></script>
<script src="scripts/Sprite.js"></script>
<script src="scripts/KeyEvt.js"></script>
<script src="scripts/Tile.js"></script>
<script src="scripts/Map.js"></script>
<script src="scripts/Item.js"></script>
<script src="scripts/Camera.js"></script>
<script src="scripts/Animation.js"></script>
<script src="scripts/Character.js"></script>
<script src="scripts/Game.js"></script>
<script src="scripts/main.js"></script>
<script src="scripts/nonGame.js"></script>
<!-- endbuild -->
</body>
</html>