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.
 
 
 

44 lines
1.0 KiB

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Uno</title>
<script defer src="../plugins.js"></script>
<script defer type="module" src="./web/uno.js"></script>
<link rel="stylesheet" href="./css/uno.css">
</head>
<body>
<div id="debug">
<p id="playerInGame"></p>
<p id="player"></p>
<p id="cardOnDeck"></p>
<div id="playerCards"></div>
<button id="drawCard">Karte Ziehen</button>
</div>
<div>
<!-- "Karte legen" Stapel -->
<img class="stack-put" src="./img/stackCards/StackPutCards.png">
<img class="stack-put" id="first-put" src="#">
<img class="stack-put" id="first-put-anim" src="#">
<!-- "Karte ziehen" Stapel -->
<img class="stack-draw" src="./img/stackCards/StackDrawCards.png">
<img class="stack-draw" src="./img/stackCards/FirstDrawCard.png">
<img class="stack-draw" id="first-draw" src="./img/stackCards/FirstDrawCard.png">
</div>
<div id="playerDeck">
</div>
</body>
</html>