index-dark.html 907 B

1234567891011121314151617181920212223242526272829
  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-color: #3b3b3b;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. <a href="http://atomicgameengine.com/"><img src="Atomic_Logo_Header-i.png"></a>
  13. <center>
  14. <iframe id="playerframe" src="AtomicPlayer.html" width="800" height="512", marginwidth="0", marginheight="0", frameborder="0", scrolling="no"></iframe>
  15. </center>
  16. <h4 style="color:tan;">Notes:</h4>
  17. <p style="color:tan;">* Run on <b>Firefox</b> for best results.</p>
  18. <p style="color:tan;">* Powered by the <a href="http://atomicgameengine.com/">Atomic Game Engine</a></p>
  19. </body>
  20. <script>
  21. function focus()
  22. {
  23. var iframe = document.getElementById('playerframe');
  24. iframe.contentWindow.focus();
  25. }
  26. window.setInterval(focus, 100);
  27. </script>