SuperMarioLand2

This commit is contained in:
mileswa1q22
2024-11-16 22:39:46 +02:00
committed by GitHub
parent c855e528b3
commit f289c22271
7 changed files with 68 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

+10
View File
@@ -298,6 +298,16 @@ const mainContentData = [
image: "games2/assets/motox3m2.jpg",
link: "games2/game/motox3m2/index.html",
},
{
name: "Drill Dozer",
image: "assets/Drill-Dozer.jpeg",
link: "/wedrowemdlemtest/webretro-master/webretro-master/embed/DrillDozer(USA).html",
},
{
name: "SuperMarioLand2",
image: "assets/Super-Mario-Land-2.png",
link: "/wedrowemdlemtest/webretro-master/webretro-master/embed/SuperMarioLand2DX.html",
},
];
mainContentData.forEach(item => {
@@ -0,0 +1,29 @@
<html>
<head>
<meta charset="UTF-8">
<title>Drill Dozer</title>
<style>
#webretro-container {
width: 800px;
height: 600px;
}
</style>
</head>
<body>
<h1>Drill Dozer</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: "Drill Dozer (USA).gba"});
document.getElementById("fullscreen").onclick = function() {
frame.requestFullscreen();
};
</script>
</body>
</html>
@@ -0,0 +1,29 @@
<html>
<head>
<meta charset="UTF-8">
<title>Super Mario Land 2 DX</title>
<style>
#webretro-container {
width: 800px;
height: 600px;
}
</style>
</head>
<body>
<h1>Super Mario Land 2 DX</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: "Super Mario Land 2 DX (Hack v1.8.1).gb"});
document.getElementById("fullscreen").onclick = function() {
frame.requestFullscreen();
};
</script>
</body>
</html>