Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
2348hi authored Jan 23, 2025
1 parent 3d29740 commit 5e551b3
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
Binary file added impq/impossiblequiz2.swf
Binary file not shown.
28 changes: 28 additions & 0 deletions impq/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<html>
<head>

<script src="/js/all.js"></script>


<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Google</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("impossiblequiz2.swf");
});
</script>
</body>
</html>

0 comments on commit 5e551b3

Please sign in to comment.