forked from nbarkhina/MarioHTML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
226 lines (199 loc) · 7.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<!DOCTYPE html>
<html>
<head>
<title>Mario HTML</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8">
<meta name="keywords" content="Neil Barkhina, Mario, HTML, HTML5, Mobile, Desktop, iPhone, Android, Touch Controls, Keyboard Controls" />
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/rivets/0.9.6/rivets.bundled.min.js"></script>
<script type="text/javascript">
var rando = Math.floor(Math.random() * Math.floor(100000));
var script = document.createElement('script');
script.src = 'https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js';
script.setAttribute("data-main", 'config.js?v=' + rando);
document.getElementsByTagName('head')[0].appendChild(script);
</script>
<style>
body,
html {
height: 100%;
}
body {
background-color: rgb(246, 246, 246);
}
.row {
margin-right: 0px;
margin-left: 0px;
}
.cardContainer {
background-color: white;
margin-top: 20px;
margin-bottom: 20px;
box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
padding-bottom: 40px;
}
.lightpurple {
background-color: rgb(193, 188, 221);
-webkit-user-select: none;
height: 84px;
}
.darkpurple {
background-color: rgb(83, 196, 241);
-webkit-user-select: none;
height: 84px;
}
.topPadding {
padding-top: 19px;
}
.buttonhold {
background-color: lightsalmon;
}
input[type="file"] {
display: none;
}
.custom-file-upload {
border: 1px solid #ccc;
display: inline-block;
padding: 6px 12px;
cursor: pointer;
}
.regularTable td,
.regularTable th {
padding: 0;
vertical-align: top;
border-top: 0px;
}
.table td,
.table th {
padding: 5px;
}
.chevron::before {
border-style: solid;
border-width: 1px 1px 0 0;
content: '';
display: inline-block;
height: 15px;
/* left: 10px; */
position: relative;
/* top: 10px; */
transform: rotate(-45deg);
vertical-align: top;
width: 15px;
position: relative;
top: 12px;
}
.chevron.right:before {
transform: rotate(45deg);
}
.chevron.bottom:before {
transform: rotate(135deg);
}
.chevron.left:before {
transform: rotate(-135deg);
}
</style>
</head>
<body>
<div id="divLoading" class="text-center">
<br><br>
Loading...
</div>
<div id="divMain" class="text-center" style="display: none;height: 100%;">
<div id="header" class="mb-2">
<h1 class="display-4" style="font-size: 3rem;">
Mario HTML
</h1>
<div class="mt-2">
<!-- <button class="btn btn-primary" onclick="myApp.prevLevel()">Prev Level</button>
<button class="btn btn-primary" onclick="myApp.nextLevel()">Next Level</button> -->
<!-- USED DIVS INSTEAD OF BUTTONS SO SPACE KEY DOESN'T TRIGGER ACCIDENTALLY -->
<div class="btn btn-primary" onclick="myApp.prevLevel()">Prev Level</div>
<div class="btn btn-primary" onclick="myApp.nextLevel()">Next Level</div>
</div>
</div>
<canvas id="my-canvas" width="640" height="480"
style="display: block;margin-left: auto;margin-right: auto;"></canvas>
<div class="card-body">
<h5 class="card-title">
Keys
</h5>
<p class="card-text">
<table style=" margin-left: auto;margin-right: auto;" cellpadding="5">
<tr>
<td>
Up, Down, Left, Right
</td>
<td>
<span class="badge badge-secondary" style="font-size: 1rem;">Move</span>
</td>
</tr>
<tr>
<td>
S
</td>
<td>
<span class="badge badge-secondary" style="font-size: 1rem;">Jump</span>
</td>
</tr>
<tr>
<td>
A
</td>
<td>
<span class="badge badge-secondary" style="font-size: 1rem;">Run</span>
</td>
</tr>
</table>
</p>
<h6 class="card-title mt-4">
<a href="https://github.com/nbarkhina/MarioHTML" target="_blank"
style="color: black;">
View source on GitHub
<img src="github_logo.png" style="height: 25px; padding-bottom: 5px; padding-left: 10px;">
</a>
</h6>
</div>
</div>
<div id="mobileDiv" style="display: none;height: 100%;">
<div id="mobileCanvas">
</div>
<div class="text-center" style="font-size: 24px;height:100%;">
<table style="width: 100%;" cellpadding=0 cellspacing=0>
<tr>
<td style="border-right: 1px solid gray;width:50%;">
<div id="mobileY" class="lightpurple" rv-class-buttonhold="data.inputContoller.MobileY">
<div class="topPadding">Prev Level</div>
</div>
</td>
<td>
<div id="mobileX" class="lightpurple" rv-class-buttonhold="data.inputContoller.MobileX">
<div class="topPadding">Next Level</div>
</div>
</td>
</tr>
<tr>
<td style="border-right: 1px solid gray;width:50%;">
<div id="mobileB" class="darkpurple" rv-class-buttonhold="data.inputContoller.MobileB">
<div class="topPadding">Jump</div>
</div>
</td>
<td>
<div id="mobileA" class="darkpurple" rv-class-buttonhold="data.inputContoller.MobileA">
<div class="topPadding">Run Toggle</div>
</div>
</td>
</tr>
</table>
<div style="color: lightgray;height:100%;" id="divTouchSurface">
<div style="padding-top: 40px;" id="startDiv">
<< Swipe to Move >>
</div>
</div>
</div>
</div>
</body>
</html>