-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
129 lines (120 loc) · 2.7 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
<!DOCTYPE html>
<html>
<head>
<script src="phaser.js"></script>
<script src="Menu.js"></script>
<script src="Marathon.js"></script>
<script src="Sprint.js"></script>
<script src="Ultra.js"></script>
<script src="Master.js"></script>
<script src="Ultimate.js"></script>
<script src="game.js"></script>
<title>Another Tetris</title>
<link rel="icon" href="assets/icon.png">
<link href="Stylish.css" type="text/css" rel="stylesheet">
</head>
<body>
<h1>Another Tetris</h1>
<div id="phaser-game"></div>
<h2>Controls:</h2>
<table>
<tr>
<th>
KEY
</th>
<th>
ACTION
</th>
</tr>
<tr>
<td>
LEFT ARROW
</td>
<td>
Move Left
</td>
</tr>
<tr>
<td>
RIGHT ARROW
</td>
<td>
Move Right
</td>
</tr>
<tr>
<td>
Z
</td>
<td>
Rotate Counter-Clockwise
</td>
</tr>
<tr>
<td>
X
</td>
<td>
Rotate Clockwise
</td>
</tr>
<tr>
<td>
DOWN ARROW
</td>
<td>
Soft Drop
</td>
</tr>
<tr>
<td>
C
</td>
<td>
Hard Drop
</td>
</tr>
<tr>
<td>
LEFT SHIFT
</td>
<td>
Hold
</td>
</tr>
<tr>
<td>
Q
</td>
<td>
Quit Game
</td>
</tr>
<tr>
<td>
R
</td>
<td>
Reset Game
</td>
</tr>
<tr>
<td>
P
</td>
<td>
Pause Game
</td>
</tr>
</table>
<footer>
<h3>CREDITS</h3>
Programmer - Dan Kruse<br>
Graphics (Except the backgrounds) - Dan Kruse<br>
Sound Effects - Tetris Attack, EarthBound (Nintendo)<br>
Original Tetris Concept - Alexey Pajitnov<br>
<h3>DISCLAIMER</h3>
This is a non-profit fanmade project. I do not take ownership of the assets created by others. Tetris and its game-play is Copyrighted by Tetris Holding.
</footer>
</body>
</html>