index.html 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Pacman</title>
  5. <!--[if IE]>
  6. <style type="text/css" media="screen">
  7. body {
  8. behavior: url("css/hack/csshover3.htc");
  9. }
  10. </style>
  11. <![endif]-->
  12. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  13. <script src="lib/jquery-1.8.3.min.js" type="text/javascript" ></script>
  14. <script src="lib/jquery-ui-1.8.23.custom.min.js" type="text/javascript" ></script>
  15. <!--
  16. <script src="lib/soundmanager2.min.js" type="text/javascript"></script>
  17. -->
  18. <script src="lib/gamequery-0.7.0.js" type="text/javascript" ></script>
  19. <!--
  20. <script src="lib/gamequery-soundwrapper-soundmanager.js" type="text/javascript"></script>
  21. -->
  22. <script src="js/utils.js" type="text/javascript"></script>
  23. <script src="js/scoreboard.js" type="text/javascript" ></script>
  24. <script src="js/pacman-data.js" type="text/javascript" ></script>
  25. <script src="js/pacman-ui.js" type="text/javascript" ></script>
  26. <script src="js/pacman-core.js" type="text/javascript" ></script>
  27. <link href="css/pacman.css" type="text/css" rel="stylesheet" media="screen, projection" />
  28. </head>
  29. <div style="width: 50%; float: left;">
  30. <div id="playgroundContainer" style="float:right;padding: 4px;">
  31. <div id="playground"></div>
  32. </div>
  33. </div>
  34. <div style="width: 40%; float: right;">
  35. <div style="background-color: black;width: 448px;padding: 4px;">
  36. <div id="ranking"></div>
  37. <div style="color: white;">
  38. <p>
  39. Famous Namco&copy;'s Pacman&copy; is now available !!!
  40. </p>
  41. <p>
  42. Use your keyboard arrows to move Pacman to eat all energizer to complete the level.<br />
  43. Ghosts become frightened when Pacman eats a big energizer. Eat them !!!<br />
  44. </p>
  45. <p>
  46. Beware of ghost who haunt the maze !!! Each one has his own personality :
  47. </p>
  48. <div><span class="ghost blinky"></span><div class="description"><b><i>Blinky</i></b> tracks Pacman as his shadow.</div></div>
  49. <div class="clear"></div>
  50. <div><span class="ghost pinky"></span><div class="description"><b><i>Pinky</i></b> perfoms ambushes to Pacman.</div></div>
  51. <div class="clear"></div>
  52. <div><span class="ghost inky"></span><div class="description"><b><i>Inky</i></b> is the least predictable.</div></div>
  53. <div class="clear"></div>
  54. <div><span class="ghost clyde"></span><div class="description"><b><i>Clyde</i></b> pretends ignorance and is one who lags behind.</div></div>
  55. <p>
  56. <ul>
  57. <li>Graphics : Fabrice Ecaille aka Febbweiss
  58. <li>Code : Fabrice Ecaille aka Febbweiss
  59. <li>Algorithm : Based on the <a href="http://home.comcast.net/~jpittman2/pacman/pacmandossier.html" target="_blank">Pacman Dossier</a>
  60. <li>Tools : <a href="http://gamequeryjs.com/" target="_blank">gameQuery</a>
  61. <li>Sounds : <a href="http://soundfxcenter.com/sound_effect/search.php?sfx=Pacman" target="_blank">Sound FX Center</a>
  62. </ul>
  63. </p>
  64. </div>
  65. </div>
  66. </div>
  67. <div style="clear: both;"></div>
  68. <div style="text-align: center; width: 100%;">
  69. <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike 3.0 Unported License</a>.
  70. </div>
  71. <script type="text/javascript">
  72. $(document).ready(function () {
  73. GUI.drawText( $("#ranking"), 'Howto');
  74. });
  75. </script>
  76. </body>
  77. </html>