This commit is contained in:
Sky 2023-06-05 20:35:05 -04:00
parent 9df048ebb0
commit 664b3f8100
5 changed files with 36 additions and 0 deletions

View File

@ -115,6 +115,7 @@
<a href="/achieveunlocked/index.html"><div class="game"><img src="/achieveunlocked/icon.png" alt="achieveunlocked Logo"><h1>Achievement Unlocked</h1></div></a>
<a href="/achieveunlocked2/index.html"><div class="game"><img src="/achieveunlocked2/icon.png" alt="achieveunlocked2 Logo"><h1>Achievement Unlocked 2</h1></div></a>
<a href="/thisistheonlylevel/index.html"><div class="game"><img src="/thisistheonlylevel/logo.png" alt="this is the only level Logo"><h1>This Is The Only Level</h1></div></a>
<a href="/thisistheonlylevel2/index.html"><div class="game"><img src="/thisistheonlylevel2/icon.png" alt="this is the only level 2 Logo"><h1>This Is The Only Level 2</h1></div></a>
<p><a href="/changelog.html">v. 2023.05.24</a></p>
</div>
</body>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,35 @@
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XVTVBR1D5V"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XVTVBR1D5V');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>This Is The Only Level</title>
<style>html{background-color:#000;}</style>
</head>
<body>
<div id="ruffle" width="100%" height="100%"></div>
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
<script>
window.RufflePlayer = window.RufflePlayer || {};
window.addEventListener("load", (event) => {
const ruffle = window.RufflePlayer.newest();
const player = ruffle.createPlayer();
const container = document.getElementById("ruffle");
player.id = "player";
player.style.width = "100%";
player.style.height = "100%";
container.appendChild(player);
player.load("level2.swf");
});
</script>
</body>
</html>

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB