index.html 732 B

123456789101112131415161718192021222324252627282930
  1. <center>
  2. <h3> Atomic Web Player</h3>
  3. <iframe id="playerframe" src="AtomicPlayer.html" width="800" height="512", marginwidth="0", marginheight="0", frameborder="0", scrolling="no"></iframe>
  4. </center>
  5. <h4>New Features:</h4>
  6. * Embed the Atomic Web Player in a page <br>
  7. * Asset Precaching <br>
  8. * New UI system (WIP) <br>
  9. * Game loop with proper cleanup <br>
  10. * Built from the atomic-cli <br>
  11. * Optimizations <br>
  12. <h4>Known Issues:</h4>
  13. * Slow startup speed issue on Chrome 42 (fixed in 44 Canary) <br>
  14. * Enable blur for cool Post Process feature, er BUG! <br><br>
  15. <script>
  16. function focus()
  17. {
  18. var iframe = document.getElementById('playerframe');
  19. iframe.contentWindow.focus();
  20. }
  21. window.setInterval(focus, 100);
  22. </script>