在网上down下facebox1.2版的源码,
重新整理了下(原来是不兼容ie6的),
附件中jquery用的是1.3版的,我只写了展示图片的弹出层。
方法:
View '/facebox/stairs.jpg' in the Facebox
<a href="stairs.jpg" rel="facebox">text</a>
Make sure jQuery is loaded before Facebox.
<script src="jquery.js" type="text/javascript"></script>
<link href="/facebox/facebox.css" media="screen" rel="stylesheet" type="text/css"/>
<script src="/facebox/facebox.js" type="text/javascript"></script>
While calling facebox()
on any anchor tag will do the trick, it's easier to give your Faceboxy links a rel="facebox"
and hit them all onLoad.
jQuery(document).ready(function($) {
$('a[rel*=facebox]').facebox()
})
You can give the facebox container an extra class (to fine-tune the display of reusable remote pages) with the facebox[.class]
rel syntax.
Maybe your Terms and Conditions can be loaded standalone or via Facebox. When loaded in Facebox, you might want to tweak some styles -- like making the h1
positioned absolutely? We do this on FamSpam.
View an an example which makes the remote.html
page bigger and bolder using css.
<a href="remote.html" rel="facebox[.bolder]">text</a>
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:
jQuery.facebox('something cool')
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 facebox()
method is passed a function.
jQuery.facebox(function() {
jQuery.get('code.js', function(data) {
jQuery.facebox('<textarea>' + data + '</textarea>')
})
})
具体教程参见:http://plugins.jquery.com/project/facebox 或者http://famspam.com/facebox