added games

This commit is contained in:
mileswa1q22
2024-11-19 16:12:04 +00:00
committed by GitHub
parent 24a6861d50
commit 987864e39b
5 changed files with 40 additions and 1 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

+11 -1
View File
@@ -309,10 +309,20 @@ const mainContentData = [
link: "/Doom-In-Docker-master/Doom-In-Docker-master/doom/public/index.html",
},
{
name: "doodle-jump 2",
name: "doodle-jump ",
image: "games2/assets/doodle.jpg",
link: "games/flasharchive-main/flasharchive-main/html/doodlejump.html",
},
{
name: "pokemon f red",
image: "assets/pokemonfred.jpeg",
link: "/wedrowemdlemtest/webretro-master/webretro-master/embed/Pokemon_ FireRed Version.html",
},
{
name: "pokemon f red rado",
image: "assets/pokemonrado.jpeg",
link: "/wedrowemdlemtest/webretro-master/webretro-master/embed/pokemonradom.html",
},
];
mainContentData.forEach(item => {
@@ -0,0 +1,29 @@
<html>
<head>
<meta charset="UTF-8">
<title>Pokemon-Fire-Red-Randomizer</title>
<style>
#webretro-container {
width: 800px;
height: 600px;
}
</style>
</head>
<body>
<h1>Pokemon-Fire-Red-Randomizer</h1>
<div id="webretro-container"></div>
<br>
<input type="button" id="fullscreen" value="Fullscreen">
<br>
<br>
<script type="text/javascript" src="embed.js"></script>
<script>
var frame = webretroEmbed(document.getElementById("webretro-container"), "../", {system: "GB/GBC/GBA", rom: "Pokemon-Fire-Red-Randomizer.zip"});
document.getElementById("fullscreen").onclick = function() {
frame.requestFullscreen();
};
</script>
</body>
</html>