2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
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.
 
 
 
 
 
 

61 lines
980 B

  1. <!DOCTYPE html>
  2. <html lang="en-PH">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Audio Interval Test</title>
  6. <style>
  7. label {
  8. position: relative;
  9. }
  10. label > span {
  11. position: absolute;
  12. left: -999999px;
  13. }
  14. label + input[type="checkbox"] {
  15. position: absolute;
  16. left: -999999px;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <form id="formAudio">
  22. <fieldset>
  23. <legend>
  24. Repeating Sounds
  25. </legend>
  26. <div>
  27. <label>
  28. <span>Interval (bpm)</span>
  29. <input
  30. type="number"
  31. name="interval"
  32. value="750"
  33. min="100"
  34. max="1000"
  35. />
  36. </label>
  37. <input
  38. type="checkbox"
  39. name="play"
  40. readonly
  41. tabindex="-1"
  42. checked
  43. />
  44. </div>
  45. <div>
  46. <label>
  47. <span>Interval (ms)</span>
  48. <output>-</output>
  49. </label>
  50. </div>
  51. <button type="submit">
  52. Toggle Sound
  53. </button>
  54. </fieldset>
  55. </form>
  56. <script src="index.js"></script>
  57. </body>
  58. </html>