Advertisement
mfrantz

Untitled

Jan 20th, 2018
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.62 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <title>Cookie Clicker</title>
  6. <!--
  7. Code and graphics copyright Orteil, 2013
  8. Feel free to alter this code to your liking, but please do not re-host it, do not profit from it and do not present it as your own.
  9.  
  10. -TODO :
  11. -milk toys
  12. -temple building
  13. -dungeons
  14. -gambling
  15. -better tooltips
  16. -better prestige
  17. -add canvas support
  18. -timer bars for golden cookie effects
  19. -set event listeners instead of onclick
  20. -more zebras
  21. -->
  22.  
  23. <link rel="shortcut icon" href="img/favicon.ico" />
  24. <link href="http://fonts.googleapis.com/css?family=Kavoon&subset=latin,latin-ext" rel="stylesheet" type="text/css">
  25. <link href="style.css?v=1.5028" rel="stylesheet" type="text/css">
  26.  
  27. <script src="base64.js"></script>
  28. <script src="ajax.js"></script>
  29. <script src="dungeons.js?v=1.5026"></script>
  30. <script src="main.js?v=1.5031"></script>
  31.  
  32.  
  33. <script type="text/javascript">
  34. var _gaq = _gaq || [];
  35. _gaq.push(['_setAccount', 'UA-29324474-2']);
  36. _gaq.push(['_setDomainName', 'dashnet.org']);
  37. _gaq.push(['_trackPageview']);
  38.  
  39. (function() {
  40. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  41. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  42. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  43. })();
  44. </script>
  45.  
  46. </head>
  47. <body>
  48.  
  49. <div id="topBar">
  50. <div>
  51. <b>Cookie Clicker</b> &copy; <a href="http://orteil.dashnet.org" target="_blank">Orteil</a>, 2013 - hosted by <a href="http://dashnet.org" target="_blank">DashNet</a> | <a href="http://twitter.com/orteil42" target="_blank">twitter</a> | <a href="http://orteil42.tumblr.com" target="_blank">tumblr</a> | Help? Bugs? Ideas? Check out the <a href="http://forum.dashnet.org" target="_blank">forum</a>! | Chat with us on <a href="http://forum.dashnet.org/discussion/277/irc-chat-channel/p1" target="_blank">IRC</a> | Getting a black screen? Try pressing ctrl-F5!
  52. <div id="links" style="display:block;position:absolute;right:8px;top:4px;"></div>
  53. </div>
  54. </div>
  55.  
  56. <div id="game">
  57. <div id="javascriptError">
  58. <div style="padding:64px 128px;">
  59. <div class="title">Oops, looks like the game isn't loading right!</div>
  60. <div>Please make sure your javascript is enabled, then refresh.<br>
  61. This could also be caused by a problem on our side, in which case - wait a moment, then refresh!</div>
  62. </div>
  63. </div>
  64.  
  65. <div id="backgroundLayers">
  66. <div id="backgroundLayer1"></div>
  67. <div id="backgroundLayer2"></div>
  68. </div>
  69.  
  70. <div id="goldenCookie" class="goldenCookie"></div>
  71. <div id="alert"></div>
  72. <div id="particles"></div>
  73. <div id="versionNumber" class="title"></div>
  74.  
  75. <div id="sectionLeft" class="inset">
  76. <div id="cookieShower"></div>
  77. <div class="blackGradient"></div>
  78. <div class="blackFiller"></div>
  79. <div id="sectionLeftInfo"></div>
  80. <div id="cookies" class="title"></div>
  81. <div id="cookieAnchor">
  82. <div id="cookieShine"></div>
  83. <div id="cookieCursors"></div>
  84. <div id="bigCookie"></div>
  85. <div id="cookieNumbers"></div>
  86. </div>
  87. <div id="milk">
  88. <div id="milkLayer1" class="milkLayer"></div>
  89. <div id="milkLayer2" class="milkLayer"></div>
  90. </div>
  91. </div>
  92.  
  93. <div class="separatorLeft"></div>
  94. <div class="separatorRight"></div>
  95.  
  96. <div id="sectionMiddle" class="inset">
  97. <div id="comments" class="inset title">
  98. <div id="prefsButton" class="button">Menu</div>
  99. <div id="statsButton" class="button">Stats</div>
  100. <div id="logButton" class="button" style="font-size:80%;">Updates</div>
  101. <div id="commentsText"></div>
  102. <div class="separatorBottom"></div>
  103. </div>
  104. <div id="rows"></div>
  105. <div id="menu"></div>
  106. </div>
  107.  
  108. <div id="sectionRight" class="inset">
  109. <div id="store">
  110. <div id="storeTitle" class="inset title">Store</div>
  111. <div id="upgrades">
  112. </div>
  113. <div id="products">
  114. </div>
  115. </div>
  116.  
  117. <div id="support">
  118. <form action="https://www.paypal.com/cgi-bin/webscr" method="post" id="donate" style="margin:0px 16px;">
  119. <div id="supportComment">Help us make more games!</div>
  120. <input type="hidden" name="cmd" value="_s-xclick">
  121. <input type="hidden" name="hosted_button_id" value="BBN2WL3TC6QH4">
  122. <input type="image" src="https://www.paypalobjects.com/en_GB/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal รขโ‚ฌโ€ The safer, easier way to pay online.">
  123. <img alt="" border="0" src="https://www.paypalobjects.com/nl_NL/i/scr/pixel.gif" width="1" height="1">
  124. </form>
  125. </div>
  126. </div>
  127.  
  128. <div id="tooltipAnchor"><div id="tooltip" onMouseOut="Game.tooltip.hide();"></div></div>
  129.  
  130. </div>
  131.  
  132. </body>
  133. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement