-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (39 loc) · 1.58 KB
/
Copy pathindex.html
File metadata and controls
47 lines (39 loc) · 1.58 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Arcade Web - Street Fighter II</title>
<style>
/* Pantalla completa sin bordes para que encaje perfecto en el iframe de Blogger */
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background-color: #000;
overflow: hidden;
}
#game-container {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="game-container"></div>
<script type="text/javascript">
EJS_player = '#game-container';
// Núcleo de Super Nintendo (SFC)
EJS_core = 'snes';
EJS_gameName = 'Street Fighter II';
EJS_color = '#d32f2f'; // Color de la barra de carga
EJS_startOnLoaded = true; // Inicia automáticamente al cargar
// Servidor externo seguro que procesa el emulador en la nube
EJS_pathtodata = 'https://cdn.emulatorjs.org/stable/data/';
// NOMBRE EXACTO DE TU ARCHIVO EN GITHUB (revisado con tu ruta)
EJS_gameUrl = 'strfigther.zip';
</script>
<script src="https://cdn.emulatorjs.org/stable/data/loader.js"></script>
</body>
</html><a href='https://ko-fi.com/R5R0HBMN2' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi4.png?v=6' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>