-
Notifications
You must be signed in to change notification settings - Fork 0
/
pinteresting.html
executable file
·138 lines (118 loc) · 4.8 KB
/
pinteresting.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
133
134
135
136
137
138
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Fancy Sliding Form with jQuery</title>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen"/>
<link rel="stylesheet" type="text/css" href="index.css" media="all">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="sliding.form.js"></script>
</head>
<style>
span.reference{
position:fixed;
left:5px;
top:5px;
font-size:10px;
text-shadow:1px 1px 1px #fff;
}
span.reference a{
color:#555;
text-decoration:none;
text-transform:uppercase;
}
span.reference a:hover{
color:#000;
}
h1{
color:#ccc;
font-size:36px;
text-shadow:1px 1px 1px #fff;
padding:20px;
}
</style>
<body>
<div>
<span class="reference">
<a href="http://jaydixit.com/">back to jaydixit.com</a>
</span>
</div>
<div id="content">
<h1>Fancy Sliding Form with jQuery</h1>
<div id="wrapper">
<div id="navigation" style="display:none;">
<ul>
<li class="selected">
<a href="#">Edit</a>
</li>
<li>
<a href="#">Original</a>
</li>
<li>
<a href="#">Final</a>
</li>
<li>
<a href="#">Download</a>
</li>
</ul>
</div>
<div id="steps">
<div class="step">
<legend>Edit</legend>
<P>
<div class="modal thin">
<form action="http://pinterest.com/pin/17662623509414860/share/" method="post" class="Form FancyForm">
<ul>
<li>
<input value="" id="MessageRecipientName" class="ClearOnFocus" name="MessageRecipientName" maxlength="180" type="text">
<label>Recipient Name</label>
<span class="fff"></span>
<span class="helper red"></span>
</li>
<li>
<input value="" id="MessageRecipientEmail" class="ClearOnFocus" name="MessageRecipientEmail" maxlength="180" type="text">
<label>Recipient Email</label>
</li>
<li class="optional">
<textarea id="MessageBody" class="ClearOnFocus"
name="MessageBody" maxlength="180"></textarea> <label>Message (optional)</label>
</li>
</ul>
<div><button class="SubmitButton Button RedButton
Button18" data-form="EmailModal" type="button">Send
Email</button></div>
</form>
</DIV>
<div class="step">
<legend>Original</legend>
<p>
<label for="name">Full Name</label>
<input id="name" name="name" type="text" AUTOCOMPLETE=OFF />
</p>
<p>
<label for="country">Country</label>
<input id="country" name="country" type="text" AUTOCOMPLETE=OFF />
</p>
<p>
<label for="phone">Phone</label>
<input id="phone" name="phone" placeholder="e.g. +351215555555" type="tel" AUTOCOMPLETE=OFF />
</p>
<p>
<label for="website">Website</label>
<input id="website" name="website" placeholder="e.g. http://www.codrops.com" type="tel" AUTOCOMPLETE=OFF />
</p>
</div>
<div class="step">
<legend>Final</legend>
<p>
blag! </p>
</div>
<div class="step">
<legend>Download</legend>
<p>
blag! </p>
</div>
</div>
</div>
</div>
</body>
</html>