Advertisement
Guest User

Untitled

a guest
Dec 14th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <title>PacMan.js!</title>
  7. <style type="text/css" media="screen">
  8. .hidden {display: none;}
  9. .text {color: white; font-family: "Times New Roman";}
  10. .smallText {color: white; font-family: "Times New Roman"; font-size: 12px;}
  11. .largeText {color: white; font-family: "Times New Roman"; font-size: 24px;}
  12. .red {color: red;}
  13. .yellow {color: yellow;}
  14. #point-counter {margin: 35px;}
  15. .container {width: 900px; margin-left: auto; margin-right: auto;}
  16. .item {float: left; margin: 0 20px; text-align: center;}
  17. body {background: black;}
  18. canvas {background: black; margin: 0;}
  19. </style>
  20. </head>
  21. <body>
  22. <header style="text-align: center;">
  23. <h1><span class="red">P</span><span class="yellow">ac</span><span class="red">M</span><span class="yellow">an</span><span class="red">!</span><span class="yellow"> :]</span></h1>
  24. </header>
  25.  
  26. <div id="welcome" class="text" style="width: 448px; margin-left: auto; margin-right: auto; text-align: justify;">
  27. <p>Welcome to play some PacMan! Use the arrow keys or &quot;W, A, S, D&quot; to control your PacMan. Space pauses/resumes the game.</p>
  28. <p>
  29. <label>Type in your name and press 'Enter': </label>
  30. <input type="text" id="namebox" name="Name" />
  31. </p>
  32. </div>
  33.  
  34. <div class="container">
  35. <div class="item">
  36. <canvas id="pmcanvas" width="448" height="496"></canvas><br />
  37. <div id="point-counter" class="text"></div>
  38. </div>
  39.  
  40. <div class="item">
  41. <div id="result-view" class="hidden">
  42. <span id="result-msg" class="largeText"></span>
  43. <br />
  44. <table id="score-table" class="text" style="border: solid 1px white; margin: 0 auto;"></table>
  45. <p class="smallText" style="text-align: center;">The score table keeps track of local matches only.</p>
  46. <br />
  47. <a href="#" style="text-decoration: none; color: white;" onclick="pacman.engine.newGame(pacman.model.username); pacman.engine.hideResultView();">Replay</a>
  48. <br />
  49. <a href="#" style="text-decoration: none; color: white;" onclick="pacman.engine.hideResultView(); initWelcomeView(); detachKeyListener();">Index page</a>
  50. </div>
  51. </div>
  52. </div>
  53.  
  54. <script src="pm.js"></script>
  55. </body>
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement