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.

MainMenu.svelte 365B

123456789101112131415161718192021222324252627
  1. <main>
  2. <h1>Game</h1>
  3. <ul>
  4. <li><a on:click={play} href="#/play">Story Mode</a></li>
  5. <li><a href="#/sandbox">Sandbox Mode</a></li>
  6. </ul>
  7. </main>
  8. <style>
  9. main {
  10. max-width: 1000px;
  11. margin: auto;
  12. }
  13. a {
  14. color: #ccc;
  15. }
  16. </style>
  17. <script>
  18. function play() {
  19. let el = document.getElementById("soundtrack");
  20. console.log(el);
  21. el.play();
  22. }
  23. </script>