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.

54 lines
1.2 KiB

2 years ago
2 years ago
  1. <!DOCTYPE html>
  2. <html lang="de">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Uno</title>
  6. <script defer src="../plugins.js"></script>
  7. <script defer type="module" src="./web/uno.js"></script>
  8. <link rel="stylesheet" href="./css/uno.css">
  9. </head>
  10. <body>
  11. <div class="selectColor">
  12. </div>
  13. <div id="debug">
  14. <p id="playerInGame"></p>
  15. <p id="player"></p>
  16. <p id="cardOnDeck"></p>
  17. <div id="playerCards"></div>
  18. <button id="drawCard">Karte Ziehen</button>
  19. </div>
  20. <div>
  21. <!-- "Karte legen" Stapel -->
  22. <img class="stack-put" src="./img/stackCards/StackPutCards.png">
  23. <img class="stack-put" id="first-put" src="#">
  24. <img class="stack-put" id="first-put-anim" src="#">
  25. <!-- "Karte ziehen" Stapel -->
  26. <img class="stack-draw" src="./img/stackCards/StackDrawCards.png">
  27. <img class="stack-draw" src="./img/stackCards/FirstDrawCard.png">
  28. <img class="stack-draw" id="first-draw" src="./img/stackCards/FirstDrawCard.png">
  29. </div>
  30. <div id="playerDeck">
  31. </div>
  32. <div id="sayUno">
  33. <img class="uno" id="sayUno-glow" src="./img/sayUnoGlow.png">
  34. <img class="uno" src="./img/sayUno.png">
  35. </div>
  36. </body>
  37. </html>