IntJake4.html 860 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset='utf8'>
  5. </head>
  6. <body>
  7. <script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
  8. <div id="container"> </div>
  9. <script>
  10. window.RufflePlayer = window.RufflePlayer || {};
  11. window.RufflePlayer.config = {
  12. autoplay: "on"
  13. };
  14. window.addEventListener("load", (event) => {
  15. const ruffle = window.RufflePlayer.newest();
  16. const player = ruffle.createPlayer();
  17. const container = document.getElementById("container");
  18. container.appendChild(player);
  19. player.load({
  20. url: "IntJake4.swf",
  21. backgroundColor: "#FFFFFF",
  22. });
  23. player.style.width = "100vw";
  24. player.style.height = "100vh";
  25. });
  26. </script>
  27. </body>
  28. </html>