-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclFIFA2000(1).html
More file actions
74 lines (73 loc) · 2.68 KB
/
clFIFA2000(1).html
File metadata and controls
74 lines (73 loc) · 2.68 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
<html><head><script src="//www.google.com/jsapi"></script><script>window.parent.maeExportApis_();</script>
<style>
body {
overflow:hidden;
background:#000000;
margin-top:0;
margin-left:0;
color: #000000;
}
#startButton {
display: block;
width: 160px;
height: 40px;
background-color: #4CAF50;
color: white;
text-align: center;
text-decoration: none;
font-size: 16px;
margin: 20px auto;
padding: 10px 20px;
border: none;
border-radius: 8px;
cursor: pointer;
font-family: 'Press Start 2P', cursive;
box-shadow: 0px 0px 10px 2px #000000;
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<style type="text/css">#button {
display:none;
}
.imgb_vis {
animation: imgb-animation 7s linear;
}
@keyframes imgb-animation {
10% {
transform: translateX(0);
}
20% {
transform: translateX(100px);
}
90% {
transform: translateX(100px);
}
100% {
transform: translateX(0);
}
}</style></head>
<body>
<div style="width: 100vw; height: 100vh;max-width:100%">
<div id="game" style="display: none;"></div>
<button id="startButton">PLAY</button>
</div>
<script>
document.getElementById("game").style.display = "none";
function startGame() {
document.getElementById("game").style.display = "block";
document.getElementById("startButton").style.display = "none";
EJS_player = "#game";
EJS_core = "gb";
EJS_color = "#000000";
EJS_startOnLoaded = true;
EJS_pathtodata = "https://cdn.jsdelivr.net/gh/a456pur/seraph@81f551ca0aa8e3d6018d32d8ac5904ac9bc78f76/storage/emulatorjs/data";
EJS_gameUrl = "https://cdn.jsdelivr.net/gh/bubbls/UGS-file-encryption@aa358825b0dd52fa84393cf10e75c7b54135f252/FIFA%202000%20(USA%2C%20Europe)%20(SGB%20Enhanced)%20(GB%20Compatible).zip";
loadGame();
}
document.getElementById("startButton").addEventListener("click", startGame);
function loadGame() {
var script = document.createElement("script");
script.src = "https://cdn.jsdelivr.net/gh/a456pur/seraph@81f551ca0aa8e3d6018d32d8ac5904ac9bc78f76/storage/emulatorjs/data/loader.js";
document.body.appendChild(script);
}
</script>