forked from defunkt/facebox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
257 lines (219 loc) · 8.94 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Facebox 1.2</title>
<link href="facebox.css" media="screen" rel="stylesheet" type="text/css" />
<link href="faceplant.css" media="screen" rel="stylesheet" type="text/css" />
<script src="jquery.js" type="text/javascript"></script>
<script src="facebox.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$('a[rel*=facebox]').facebox({
loading_image : 'loading.gif',
close_image : 'closelabel.gif'
})
})
</script>
</head>
<body>
<div id="main">
<div id="shadow">
<div id="content">
<div id="logo">
<img src="logo.png"/>
</div>
<div class="example">
<h2>What is it?</h2>
<p>
Facebox is a jQuery-based, Facebook-style lightbox which can display images, divs, or entire remote pages.
</p>
<p>
It's simple to use and easy on the eyes. Download the tarball, view the examples, then start enjoying the curves.
</p>
</div>
<div class="example">
<h2>Why another lightbox?</h2>
<p>
Because we wanted, nay, <em>needed</em> a Facebook-style lightbox on <a href="http://famspam.com">FamSpam</a>.
</p>
</div>
<div class="example">
<h2>Download</h2>
<p>Requires <a href="http://jquery.com">jQuery 1.2.1</a>.</p>
<p>
You'll need a loading image, close label, four corners, and solid border images in addition to the javascript and css files. All are included
in the tarball.
</p>
<p>
<strong><a href="releases/facebox-1.2.tar.gz">Download Facebox v1.2</a></strong>
</p>
<p>
Want to live on the edge? The code is kept in <strong><a href="http://github.com">GitHub</a></strong> at <a href="http://github.com/defunkt/facebox">http://github.com/defunkt/facebox</a>
</p>
</div>
<div class="example">
<h2>Help!</h2>
<p> Need help? Join our <a href="http://groups.google.com/group/facebox/">Google Groups mailing list</a>.</p>
</div>
<div class="example">
<h2>Images</h2>
<p> <a href="stairs.jpg" rel="facebox">View '/facebox/stairs.jpg' in the Facebox</a> </p>
<div class="code">
<h3>The Code</h3>
<code><a href="stairs.jpg" rel="facebox">text</a></code>
</div>
</div>
<div class="example">
<h2>Divs</h2>
<p> <a href="#info" rel="facebox">View the 'info' div in the Facebox</a> </p>
<div class="code">
<h3>The Code</h3>
<code><a href="#info" rel="facebox">text</a></code>
</div>
</div>
<div class="example">
<h2>Ajaxes</h2>
<p> <a href="remote.html" rel="facebox">View 'remote.html' in the Facebox</a> </p>
<div class="code">
<h3>The Code</h3>
<code><a href="remote.html" rel="facebox">text</a></code>
</div>
</div>
<div class="example">
<h2>Load Dependencies</h2>
<p>Make sure jQuery is loaded before Facebox.</p>
<div class="code">
<code>
<script src="jquery.js" type="text/javascript"></script><br/>
<link href="/facebox/facebox.css" media="screen" rel="stylesheet" type="text/css"/><br/>
<script src="/facebox/facebox.js" type="text/javascript"></script>
</code>
</div>
</div>
<div class="example">
<h2>Attach It onLoad</h2>
<p>While calling <code>facebox()</code> on any anchor tag will do the trick, it's easier to give your Faceboxy links a <code>rel="facebox"</code> and hit them all onLoad.</p>
<div class="code">
<code>
jQuery(document).ready(function($) {<br/>
$('a[rel*=facebox]').facebox() <br/>
})
</code>
</div>
</div>
<div class="example">
<h2>Extra Classes</h2>
<p>
You can give the facebox container an extra class (to fine-tune the display of reusable remote pages)
with the <code>facebox[.class]</code> rel syntax.
</p>
<p>
Maybe your <i>Terms and Conditions</i> can be loaded standalone or via Facebox. When loaded in Facebox,
you might want to tweak some styles -- like making the <code>h1</code> positioned absolutely?
We do this on FamSpam.
</p>
<p>
<a href="/facebox/remote.html" rel="facebox[.bolder]">
View an an example which makes the <code>remote.html</code> page bigger and bolder using css.
</a>
</p>
<div class="code">
<h3>The Code</h3>
<code><a href="remote.html" rel="facebox[.bolder]">text</a></code>
</div>
</div>
<div class="example">
<h2>Controlling Facebox Programmatically</h2>
<p>
It's possible to attain a higher level control over Facebox by calling methods directly.
The following will open the Facebox and insert the passed string into it:
</p>
<div class="code">
<h3>Arbitrary Text</h3>
<code>
jQuery.facebox('something cool');<br/>
jQuery.facebox('something cool', 'my-groovy-style');
</code>
<h3>Remote files</h3>
<code>
jQuery.facebox({ ajax: 'remote.html' });<br/>
jQuery.facebox({ ajax: 'remote.html' }, 'my-groovy-style');
</code>
<h3>Image</h3>
<code>
jQuery.facebox({ image: 'stairs.jpg' });<br/>
jQuery.facebox({ image: 'stairs.jpg' }, 'my-groovy-style');
</code>
<h3>A Page Element</h3>
<code>
jQuery.facebox({ div: '#box' });<br/>
jQuery.facebox({ div: '#box' }, 'my-groovy-style');
</code>
</div>
<p>
If you plan to fill the Facebox with the result of an Ajax call, you'll want the loading graphic
displayed whilst your asynchronus task runs. This is the automatic behavior if the <code>facebox()</code>
method is passed a function.
</p>
<div class="code">
<h3>Loading Image Displayed</h3>
<code>
jQuery.facebox(function() { <br/>
jQuery.get('code.js', function(data) {<br/>
jQuery.facebox('<textarea>' data '</textarea>')<br/>
})<br/>
})
</code>
</div>
</div>
<div class="example">
<h2>Screenshots</h2>
<p>
See it in action on <a href="http://famspam.com">FamSpam</a>!
</p>
<ul id="screenshots">
<li><a href="screenshots/photo.png" rel="facebox"><img src="screenshots/photo_small.png"></a></li>
<li><a href="screenshots/error.png" rel="facebox"><img src="screenshots/error_small.png"></a></li>
<li><a href="screenshots/success.png" rel="facebox"><img src="screenshots/success_small.png"></a></li>
<li><a href="screenshots/preview.png" rel="facebox"><img src="screenshots/preview_small.png"></a></li>
</ul>
<p>
You may also want to check out <a href="http://stafftool.com/">Stafftool</a>, which uses Facebox.
</p>
</div>
<div class="example">
<h2>Thanks <span class="amp">&</span> Contact</h2>
<p>
Thanks to Facebook for the idea and style. Thanks to Mindy Tchieu for her help in getting this working.
</p>
<p>
Comments, concerns, complaints, criticisms, confessions? Email me: <a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
</div>
<div id="footer">
<p class="right">
<a href="mailto:[email protected]">Contact</a>
</p>
<ul>
<li> Code ©2007/2008 Chris Wanstrath </li>
<li> Style ©2007 Facebook </li>
<li>MIT License</li>
</ul>
</div>
</div>
<div id="info" style="display:none;">
<p> Hey, I'm the 'info' div! </p>
<p> I look like this: </p>
<code>
<div id="info" style="display:none;"> <br/>
text<br/>
</div>
</code>
</div>
<script src="http://static.getclicky.com/21321.js" type="text/javascript"></script>
<noscript><p><img alt="Clicky" src="http://in.getclicky.com/21321-db3.gif" /></p></noscript>
</body>
</html>