public
Description: Really simple lightbox.
Homepage:
Clone URL: git://github.com/drogus/lightbox-fu.git
drogus (author)
Wed Jul 02 06:30:19 -0700 2008
commit  2b92eae5fab7f7fd54a00df3e479bc4cdee4ae87
tree    560df13feb6351190ead40ce4011cbbda71668d2
parent  01b44f08d1feb227d4d1e9025dd8a98af4b66754
name age message
file .gitignore Tue Jun 24 08:24:55 -0700 2008 Git ignore [drogus]
file README Loading commit data...
directory example/
directory images/ Tue Jun 24 08:35:54 -0700 2008 blank.gif for IE [drogus]
file jquery.lightBoxFu.js
directory lib/ Mon Jun 23 14:33:13 -0700 2008 Initial commit [drogus]
directory stylesheets/
README
Really simple lightbox. You can open lightbox with given dimensions and html. 

It's build to be fast and really light - all positioning is based on CSS (with some expressions hacks for IE6 and IE7).

Usage:
Initialize lightbox and give custom paths to images and stylesheets:

$.lightBoxFu.initialize({imagesPath: '/images/', stylesheetsPath: '/stylesheets/'});

Open lightbox with given html and width:

$.lightBoxFu.open({
        html: "Some <b>shiny</b> HTML.",
        width: "250px",
        /* don't let the user close lightBoxFu by clicking on an overlay */
  closeOnClick: false
      });

Based on overlay by Riddle (riddle.pl):
http://perfectionorvanity.com/2007/04/08/polprzezroczyste-warstwy-overlay-i-okienka-div/
http://riddle.pl/-/xhtml/css-overlay/overlay-fixed-final.html