-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (99 loc) · 4.19 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
<!DOCTYPE html>
<html>
<head>
<title>Hawkspree</title>
<link href='http://fonts.googleapis.com/css?family=Ubuntu:regular,bold'
rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="main.css" />
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script type="text/javascript" src="fancybox/jquery.fancybox-1.3.4.pack.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-17027921-3']);
_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);
})();
$(function(){
$("a#screen").fancybox({
'overlayShow' : false,
'transitionIn' : 'elastic',
'transitionOut' : 'elastic'
});
$("a#button").fancybox({
'transitionIn' : 'elastic',
'transitionOut' : 'elastic',
'onComplete': function(){
_gaq.push(['_trackEvent', 'signup', 'open']);
}
});
var text = '[email protected]';
var input = $('#signup input[name="email"]');
input.focus(function(){
if (input.val() == text){
input.val('');
input.css('color', '#222');
}
});
input.blur(function(){
if (input.val() == ''){
input.val(text);
input.css('color', '#666');
}
});
$('#signup form').submit(function(e){
e.preventDefault();
_gaq.push(['_trackEvent', 'signup', 'submit']);
$.ajax({
url: 'http://dev.connectsy.com/extras/beta_email/',
data: $('#signup form').serialize(),
dataType: 'jsonp',
type: 'GET',
});
input.val('Thanks!');
input.attr('disabled', 'disabled');
$('#signup input[type="submit"]').attr('disabled', 'disabled');
});
});
</script>
<head>
<body>
<div id="top-bar"></div>
<div id="header">
<img src="img/logo.png"/>
</div>
<div id="main-bg"><div id="main">
<!--
<a id="screen" href="img/screen.png"><img src="img/screen-small.png"/></a> -->
<div id="copy">
<h1>All the features you wish Craig had</h1>
<ul>
<li>List your item with Craig, manage it on Hawkspree</li>
<li>Let buyers make offers publicly, you get the best price and avoid low-ballers</li>
<li>Respond to questions in the open, you don't have to repeat yourself</li>
<li>Share your item on Facebook and Twitter, your friends might like it</li>
<li>Never reveal your email, everything is handled in one place</li>
</ul>
</div>
</div></div>
<div id="footer">
<a id="screen" href="img/screen.png">sneak peak</a>
<a id="button" href="#signup">
Sign me up!
</a>
</div>
<div style="display: none;">
<div id="signup">
Hawkspree is still in development.<br/>
We'll you let you know when we launch.
<form action="GET" action="http://dev.connectsy.com/extras/beta_email/">
<input id="email" type="text" name="email" value="[email protected]" />
<input id="submit" type="submit" value="Send"/>
</form>
</div>
</div>
</body>
</html>