-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathindex.html
132 lines (113 loc) · 4.49 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html>
<head>
<title>Cookie Clicker</title>
<!--
Code and graphics copyright Orteil, 2013
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.
-TODO :
-milk toys
-temple building
-dungeons
-gambling
-better tooltips
-better prestige
-add canvas support
-timer bars for golden cookie effects
-set event listeners instead of onclick
-more zebras
-->
<link rel="shortcut icon" href="img/favicon.ico" />
<link href="http://fonts.googleapis.com/css?family=Kavoon&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link href="style.css?v=1.5028" rel="stylesheet" type="text/css">
<script src="base64.js"></script>
<script src="ajax.js"></script>
<script src="dungeons.js?v=1.5026"></script>
<script src="main.js?v=1.5031"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-29324474-2']);
_gaq.push(['_setDomainName', 'dashnet.org']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="topBar">
<div>
<b>Cookie Clicker</b> © <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!
<div id="links" style="display:block;position:absolute;right:8px;top:4px;"></div>
</div>
</div>
<div id="game">
<div id="javascriptError">
<div style="padding:64px 128px;">
<div class="title">Oops, looks like the game isn't loading right!</div>
<div>Please make sure your javascript is enabled, then refresh.<br>
This could also be caused by a problem on our side, in which case - wait a moment, then refresh!</div>
</div>
</div>
<div id="backgroundLayers">
<div id="backgroundLayer1"></div>
<div id="backgroundLayer2"></div>
</div>
<div id="goldenCookie" class="goldenCookie"></div>
<div id="alert"></div>
<div id="particles"></div>
<div id="versionNumber" class="title"></div>
<div id="sectionLeft" class="inset">
<div id="cookieShower"></div>
<div class="blackGradient"></div>
<div class="blackFiller"></div>
<div id="sectionLeftInfo"></div>
<div id="cookies" class="title"></div>
<div id="cookieAnchor">
<div id="cookieShine"></div>
<div id="cookieCursors"></div>
<div id="bigCookie"></div>
<div id="cookieNumbers"></div>
</div>
<div id="milk">
<div id="milkLayer1" class="milkLayer"></div>
<div id="milkLayer2" class="milkLayer"></div>
</div>
</div>
<div class="separatorLeft"></div>
<div class="separatorRight"></div>
<div id="sectionMiddle" class="inset">
<div id="comments" class="inset title">
<div id="prefsButton" class="button">Menu</div>
<div id="statsButton" class="button">Stats</div>
<div id="logButton" class="button" style="font-size:80%;">Updates</div>
<div id="commentsText"></div>
<div class="separatorBottom"></div>
</div>
<div id="rows"></div>
<div id="menu"></div>
</div>
<div id="sectionRight" class="inset">
<div id="store">
<div id="storeTitle" class="inset title">Store</div>
<div id="upgrades">
</div>
<div id="products">
</div>
</div>
<div id="support">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" id="donate" style="margin:0px 16px;">
<div id="supportComment">Help us make more games!</div>
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="BBN2WL3TC6QH4">
<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.">
<img alt="" border="0" src="https://www.paypalobjects.com/nl_NL/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
</div>
<div id="tooltipAnchor"><div id="tooltip" onMouseOut="Game.tooltip.hide();"></div></div>
</div>
</body>
</html>