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 289B

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