-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
374 lines (336 loc) · 12.7 KB
/
index.html
File metadata and controls
374 lines (336 loc) · 12.7 KB
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
<!DOCTYPE html>
<html lang="es" prefix="og: https://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- w3c -->
<title>Ports Mario 64 android apk</title>
<!-- opengraph -->
<meta property="og:site_name" content="Ports Mario 64 android apk"/>
<meta property="og:type" content="website"/>
<meta property="og:title" content="Ports Mario 64 android apk"/>
<meta property="og:url" content="https://coop-tutorial/builder"/>
<meta property="og:description" content="Descubre la mejor forma de jugar los port de mario 64 android apk."/>
<!-- twitter card -->
<meta name="twitter:site" content="https://coop-tutorial/builder/"/>
<meta name="twitter:card" content="https://coop-tutorial/builder/hats.png"/>
<meta name="twitter:title" content="Ports Mario 64 android apk"/>
<meta name="twitter:description" content="Descubre la mejor forma de jugar los port de mario 64 android apk."/>
<!-- links -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<style>
body {
background-color: #121212;
color: #e0e0e0;
font-family: Arial, sans-serif;
padding: 20px;
margin: 0;
}
h1, h2 {
color: #ffffff;
}
a {
color: #1e90ff;
}
pre, code {
background-color: #1e1e1e;
color: #dcdcdc;
padding: 10px;
border-radius: 5px;
overflow-x: auto;
}
button {
background-color: #1e90ff;
color: #ffffff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
margin-top: 10px;
}
button:hover {
background-color: #1c86ee;
}
.tip {
background-color: #2e2e2e;
border-left: 5px solid #1e90ff;
padding: 10px;
margin: 20px 0;
border-radius: 5px;
}
.button-container {
display: flex;
justify-content: space-between;
align-items: center;
}
#modal {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #1e1e1e;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
animation: zoom-fade 0.5s ease;
}
@keyframes zoom-fade {
from {
transform: translate(-50%, -50%) scale(0.8);
opacity: 0;
}
to {
transform: translate(-50%, -50%) scale(1);
opacity: 1;
}
}
#modal button {
background-color: #1e90ff;
margin-top: 20px;
}
footer {
margin-top: 50px;
text-align: center;
}
footer a {
color: #1e90ff;
text-decoration: none;
margin: 0 10px;
}
/* Estilos para la tarjeta de Retired64 */
.retired64-card {
font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
max-width: 380px;
margin: 20px auto;
border-radius: 12px;
background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fb 100%);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.retired64-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
.retired64-header {
padding: 24px 24px 16px;
text-align: center;
background: linear-gradient(135deg, #ff4e50 0%, #f9d423 100%);
color: white;
position: relative;
}
.retired64-icon {
width: 60px;
height: 60px;
margin: 0 auto 12px;
background-color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.retired64-youtube-icon {
width: 32px;
height: 32px;
fill: #ff4e50;
}
.retired64-title {
margin: 0;
font-size: 1.8rem;
font-weight: 700;
letter-spacing: -0.5px;
}
.retired64-subtitle {
display: block;
font-size: 0.9rem;
opacity: 0.9;
margin-top: 4px;
font-weight: 500;
}
.retired64-content {
padding: 24px;
}
.retired64-description {
color: #555;
line-height: 1.6;
margin-bottom: 24px;
font-size: 0.95rem;
}
.retired64-button {
display: inline-flex;
align-items: center;
padding: 12px 24px;
background-color: #ff4e50;
color: white;
text-decoration: none;
border-radius: 30px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(255, 78, 80, 0.2);
}
.retired64-button:hover {
background-color: #ff3336;
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(255, 78, 80, 0.3);
}
.retired64-button-icon {
display: inline-flex;
margin-right: 8px;
}
.retired64-play-icon {
width: 18px;
height: 18px;
fill: currentColor;
}
.retired64-footer {
padding: 16px 24px;
background-color: rgba(0, 0, 0, 0.02);
border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.retired64-credits {
display: flex;
align-items: center;
justify-content: center;
font-size: 0.8rem;
color: #777;
}
.retired64-heart-icon {
width: 16px;
height: 16px;
fill: #ff4e50;
margin-right: 6px;
}
</style>
</head>
<body>
<h1>Mario Port Android</h1>
<p>Todo lo que necesitas es una ROM de Super Mario 64 de USA, nombrada <br><br><code>baserom.us.z64</code>.<br><br> Puede estar en la raíz de descargas o en la raíz del almacenamiento interno, ¡de cualquier manera probablemente la encontrará!</p>
<h2>DESCARGAR TERMUX</h2>
<a href="https://f-droid.org/repo/com.termux_118.apk" class="button-container">
<button class="button-container">Descargar Termux APK</button>
</a>
<div class="retired64-card">
<div class="retired64-header">
<div class="retired64-icon">
<svg viewBox="0 0 24 24" class="retired64-youtube-icon">
<path d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z"/>
</svg>
</div>
<h3 class="retired64-title">Retired64</h3>
<span class="retired64-subtitle">Tutoriales & Videojuegos</span>
</div>
<div class="retired64-content">
<p class="retired64-description">Canal dedicado a tutoriales de desarrollo y análisis de videojuegos. Aprende técnicas creativas y descubre nuevos juegos indie.</p>
<a href="https://youtube.com/@retired64" target="_blank" class="retired64-button">
<span class="retired64-button-icon">
<svg viewBox="0 0 24 24" class="retired64-play-icon">
<path d="M8 5v14l11-7z"/>
</svg>
</span>
Visitar Canal
</a>
</div>
<div class="retired64-footer">
<div class="retired64-credits">
<svg viewBox="0 0 24 24" class="retired64-heart-icon">
<path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/>
</svg>
<span>Recomendado por la comunidad</span>
</div>
</div>
</div>
<p>Las compilaciones externas de SM64EX necesitan que el <br><br><code>base.zip</code> <br><br>se mueva a <code>Android/data/files/res/</code><br><br>. El <code>base.zip</code><br><br> se encuentra dentro del constructor de SM64 en la carpeta<br> sm64-izzys-port-android/build/us_pc/res/</p>
<p><strong>Usa los siguientes comandos:</strong></p>
<h2>Para construir Coop</h2>
<pre id="command1"><code>bash <(curl -Ls https://github.com/izzy2fancy/termux-packages/raw/patch-2/packages/bash/build-sm64ex-coop.sh)</code></pre>
<div class="button-container">
<button onclick="copyCommand('command1')">Copiar Comando</button>
</div>
<h2>Para construir Coop Render96 HD</h2>
<pre id="command2"><code>bash <(curl -Ls https://github.com/izzy2fancy/termux-packages/raw/patch-2/packages/bash/build-sm64ex-coop-render96.sh)</code></pre>
<div class="button-container">
<button onclick="copyCommand('command2')">Copiar Comando</button>
</div>
<h2>Para construir OMM</h2>
<pre id="command3"><code>bash <(curl -Ls https://github.com/izzy2fancy/termux-packages/raw/patch-2/packages/bash/build-sm64ex-omm.sh)</code></pre>
<div class="button-container">
<button onclick="copyCommand('command3')">Copiar Comando</button>
</div>
<h2>Para construir ALO</h2>
<pre id="command4"><code>bash <(curl -Ls https://github.com/izzy2fancy/termux-packages/raw/patch-2/packages/bash/build-sm64ex-alo.sh)</code></pre>
<div class="button-container">
<button onclick="copyCommand('command4')">Copiar Comando</button>
</div>
<h2>Para construir SM64EX internal</h2>
<pre id="command5"><code>bash <(curl -Ls https://github.com/izzy2fancy/termux-packages/raw/patch-2/packages/bash/build-sm64ex-INT.sh)</code></pre>
<div class="button-container">
<button onclick="copyCommand('command5')">Copiar Comando</button>
</div>
<h2>Para construir SM64EX internal No Touch</h2>
<pre id="command6"><code>bash <(curl -Ls https://github.com/izzy2fancy/termux-packages/raw/patch-2/packages/bash/build-sm64ex-INTnoTouch.sh)</code></pre>
<div class="button-container">
<button onclick="copyCommand('command6')">Copiar Comando</button>
</div>
<h2>Para construir SM64EX external (necesita los Assets movidos a <code>Android/data/files/res/</code>)</h2>
<pre id="command7"><code>bash <(curl -Ls https://github.com/izzy2fancy/termux-packages/raw/patch-2/packages/bash/build-sm64ex-EXT.sh)</code></pre>
<div class="button-container">
<button onclick="copyCommand('command7')">Copiar Comando</button>
</div>
<h2>Para construir SM64EX external No Touch (necesita los Assets movidos a <code>Android/data/files/res/</code>)</h2>
<pre id="command8"><code>bash <(curl -Ls https://github.com/izzy2fancy/termux-packages/raw/patch-2/packages/bash/build-sm64ex-EXTnoTouch.sh)</code></pre>
<div class="button-container">
<button onclick="copyCommand('command8')">Copiar Comando</button>
</div>
<h2>Para construir SM64EX Porcino</h2>
<pre id="command9"><code>bash <(curl -Ls https://github.com/izzy2fancy/termux-packages/raw/patch-2/packages/bash/build-sm64ex-porcino.sh)</code></pre>
<div class="button-container">
<button onclick="copyCommand('command9')">Copiar Comando</button>
</div>
<h2>Para construir SM64EX Star Road</h2>
<pre id="command10"><code>bash <(curl -Ls https://github.com/izzy2fancy/termux-packages/raw/patch-2/packages/bash/build-starroad.sh)</code></pre>
<div class="button-container">
<button onclick="copyCommand('command10')">Copiar Comando</button>
</div>
<button id="share-button">Compartir Página</button>
<div id="modal">
<p>Comando copiado al portapapeles.</p>
<button onclick="closeModal()">Cerrar</button>
</div>
<footer>
<p style="color: red;">Créditos:<br><br> <a href="https://youtube.com/@retired64" target="_blank">YouTube</a> | <a href="https://github.com/izzy2fancy/termux-app" target="_blank">izzy2fancy</a> | <a href="https://github.com/coop-tutorial/" target="_blank">retired64</a></p>
</footer>
<script>
function copyCommand(id) {
const commandText = document.getElementById(id).innerText;
navigator.clipboard.writeText(commandText).then(() => {
document.getElementById('modal').style.display = 'block';
}).catch(err => {
console.error('Error al copiar el comando:', err);
});
}
function closeModal() {
document.getElementById('modal').style.display = 'none';
}
document.getElementById('share-button').addEventListener('click', async () => {
if (navigator.share) {
try {
await navigator.share({
title: 'Mario port Android Collections',
text: 'Mira esta guía sobre cómo instalar Mario port en Android.',
url: 'https://coop-tutorial.github.io/builder/'
});
console.log('Contenido compartido exitosamente');
} catch (err) {
console.error('Error al compartir:', err);
}
} else {
alert('La función de compartir no está soportada en este navegador.');
}
});
</script>
</body>
</html>