-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
executable file
·70 lines (65 loc) · 3.23 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
<html>
<head>
<title>dotty-dots!</title>
<!-- Looking at the code eh? Goto: https://github.com/markbrenigjones/dotty-dots -->
<meta charset="utf-8">
<link rel="stylesheet" href="/static/original.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript" src="/static/alphabet.js"></script>
<script type="text/javascript" src="/static/main.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-18424853-1']);
_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>
<script>
function recordOutboundLink(link, category, action) {
try {
_gaq.push(['_trackEvent', category, action]);
setTimeout('document.location = "' + link.href + '"', 100)
}catch(err){}
}
</script>
</head>
<body>
<canvas id="c" style="position:absolute;top:0px;left:0px" width="100%" height="100%">
<br/>
<br/>
<br/>
Hello old timer!<br/>
Sorry, but this website requires HTML5. <br/>
You should check out <a href="http://www.google.com/chrome">chrome</a> or <a href="http://www.getfirefox.com">firefox</a><br/>
then come back to play!
</canvas>
<form type="get" action="/" id="inputform">
Enter a message:
<input type="text" id="text_field" name="t" value="" row="1" maxlength="30">
<input type="hidden" id="hex_field" name="h" value="">
<input type="submit" id="submit_btn" value="Go">
</form>
<p id="effects">
<a href="/">Original</a> -
<a href="/?t=Tornado&rf=0.07&fr=0.83">Tornado</a> -
<a href="/?t=Whirlpool!&rf=0.05&fr=0.84">Whirlpool (Northern)</a> -
<a href="/?t=Whirlpool!&rf=-0.05&fr=0.84">Whirlpool (Southern)</a>
</p>
<p id="attribution">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fdotty-dots.appspot.com&layout=button_count&show_faces=true&width=450&action=like&colorscheme=light&height=21"
scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:200px; height:21px;" allowTransparency="true"></iframe>
<br/>Effects by <a href="http://rawkes.com/experiments/google-bouncing-balls-canvas/"
onClick="recordOutboundLink(this, 'Outbound Links', 'Rob Hawkes');return false;">Rob Hawkes</a><br/>
Built by <a href="http://twitter.com/mbrenig"
onClick="recordOutboundLink(this, 'Outbound Links',
'Mark Brenig-Jones');return false;">Mark Brenig-Jones</a><br/>
Lettering by <a href="http://www.proudn00b.com"
onClick="recordOutboundLink(this, 'Outbound Links', 'Emile Petrone');return false;">Emile Petrone</a><br/>
Inspired by <a href="http://www.google.com/search?q=google+bouncing+ball+logo"
onClick="recordOutboundLink(this, 'Outbound Links', 'Google logo');return false;" >Google</a>
</p>
</body>
</html>