index-image.html 956 B

12345678910111213141516171819202122232425262728293031
  1. <head>
  2. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  3. <title>Atomic Game Engine Web Player</title>
  4. <link rel='shortcut icon' href='favicon.ico' type='image/x-icon'/ >
  5. <style type="text/css">
  6. body {
  7. background-image: url("background.jpg");
  8. background-size: cover;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <a href="http://atomicgameengine.com/"><img src="Atomic_Logo_Header-i.png"></a>
  14. <center>
  15. <iframe id="playerframe" src="AtomicPlayer.html" width="800", height="512", marginwidth="0", marginheight="0", frameborder="0", scrolling="no"></iframe>
  16. </center>
  17. <h4 style="color:white;">Notes:</h4>
  18. <p style="color:white;">* Run on <b>Firefox</b> for best results.</p>
  19. <p style="color:white;">* Powered by the <a href="http://atomicgameengine.com/">Atomic Game Engine</a></p>
  20. </body>
  21. <script>
  22. function focus()
  23. {
  24. var iframe = document.getElementById('playerframe');
  25. iframe.contentWindow.focus();
  26. }
  27. window.setInterval(focus, 100);
  28. </script>