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.

46 lines
1.8 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <link rel="stylesheet" type="text/css" href="css/style.css" />
  5. <meta charset="UTF-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <script type="text/javascript" src="js/diceHandling.js"></script>
  9. <script type= "text/javascript" src="js/boardHandling.js"></script>
  10. <script type= "text/javascript" src="js/Bridge.js"></script>
  11. <script type= "text/javascript" src="js/playerHandling.js"></script>
  12. <title>Document</title>
  13. </head>
  14. <header>
  15. <h1>Schlangen und Leitern</h1>
  16. </header>
  17. <body>
  18. <div class = playerSelect>
  19. <input type="button" class = "playerButton" id="2Player" onclick="init(2)" value="2 Spieler"></input>
  20. <input type="button" class = "playerButton" id="3Player" onclick="init(3)" value ="3 Spieler"></input>
  21. <input type="button" class = "playerButton" id="4Player" onclick="init(4)" value = "4 Spieler"></input>
  22. </div>
  23. <div calss = container id="playArea" >
  24. <div id="leftSide">
  25. <canvas id= "canvas"></canvas>
  26. <table id = "board"></table>
  27. </div>
  28. <div id = "rightSide">
  29. <p id ="isUp">Spieler 1 ist dran</p>
  30. <input type="button" id ="replay" onclick="document.location.reload(true)" value = "Replay" style="display: none;">
  31. <input type="button" id ="continue" onclick= "continueGame()" value = "continue playing"style="display: none;">
  32. <div class = container id="würfelBereich" style="display: none;" >
  33. <img src="/img/wurfle/f(1).png" id="face">
  34. <input type = "button" id="rollButton" value = "Würfeln">
  35. </div>
  36. </div>
  37. </div>
  38. </body>
  39. </html>