GameBoy (Color) port of the GTA San Andreas arcade game Duality
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <html>
  2. <head>
  3. <style>
  4. #wrap, #text {
  5. width: 100%;
  6. height: 100%;
  7. max-width: 640px;
  8. max-height: 480px;
  9. margin: auto;
  10. text-align: center;
  11. }
  12. #controls {
  13. margin: 0px auto;
  14. }
  15. @media (prefers-color-scheme: dark) {
  16. body, #wrap, #text {
  17. background-color: #111111;
  18. color: #FFFFFF;
  19. }
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <div id="wrap">
  25. <div id="game"></div>
  26. </div>
  27. <div id="text">
  28. <h1>Duality</h1>
  29. <p>A GameBoy (Color) port of the GTA San Andreas arcade game Duality.</p>
  30. <table id="controls" border="1">
  31. <tr><th>Key</th><th>Action</th></tr>
  32. <tr><td>Arrow Left</td><td>Rotate Left</td></tr>
  33. <tr><td>Arrow Right</td><td>Rotate Right</td></tr>
  34. <tr><td>Z</td><td>Accelerate</td></tr>
  35. <tr><td>X</td><td>Shoot</td></tr>
  36. </table>
  37. <hr>
  38. <p>Download the <a href="https://xythobuz.github.io/Duality/duality.gb">ROM</a>!</p>
  39. <p>Get the source code on <a href="https://github.com/xythobuz/Duality">GitHub</a>.</p>
  40. <p>Emulation supported by <a href="https://emulatorjs.org">EmulatorJS</a>.</p>
  41. </div>
  42. <script>
  43. EJS_player = "#game";
  44. EJS_core = "gb";
  45. EJS_pathtodata = "https://cdn.emulatorjs.org/stable/data/";
  46. EJS_gameUrl = "https://xythobuz.github.io/Duality/duality.gb";
  47. </script>
  48. <script src="https://cdn.emulatorjs.org/stable/data/loader.js"></script>
  49. </body>
  50. </html>