123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE HTML>
- <html>
- <head>
- <meta charset='utf8'>
- </head>
- <body>
- <script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
- <div id="container"> </div>
- <script>
- window.RufflePlayer = window.RufflePlayer || {};
- window.RufflePlayer.config = {
- autoplay: "on"
- };
- window.addEventListener("load", (event) => {
- const ruffle = window.RufflePlayer.newest();
- const player = ruffle.createPlayer();
- const container = document.getElementById("container");
- container.appendChild(player);
- player.load({
- url: "IntJake4.swf",
- backgroundColor: "#FFFFFF",
- });
- player.style.width = "100vw";
- player.style.height = "100vh";
- });
- </script>
- </body>
- </html>
|