big steppy
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

44 行
1.2 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Stroll</title>
  6. <link rel="stylesheet" href="style.css">
  7. <script src="recursive-macro.js"></script>
  8. <script src="game.js"></script>
  9. </head>
  10. <body>
  11. <div id=game-area>
  12. <div id=log>
  13. It's a nice day for a walk.
  14. </div>
  15. <button id=button-grow>Get Bigger</button>
  16. <button id=button-feed>Eat</button>
  17. <button id=button-stomp>Stomp</button>
  18. <button id=button-anal_vore>Sit</button>
  19. <div></div>
  20. <button id=button-stroll>Stroll</button>
  21. <div class=flex-container>
  22. <div class=stat-header id=stats-self>
  23. <p>Stats</p>
  24. <div class=stat-line id=height></div>
  25. <div class=stat-line id=mass></div>
  26. </div>
  27. <div class=stat-header id=stats-stomped>
  28. <p>Stomped</p>
  29. </div>
  30. <div class=stat-header id=stats-digested>
  31. <p>Digested</p>
  32. </div>
  33. <div class=stat-header id=stats-stomach>
  34. <p>Stomach</p>
  35. </div>
  36. <div class=stat-header id=stats-bowels>
  37. <p>Bowels</p>
  38. </div>
  39. </div>
  40. </div>
  41. </body>
  42. </html>