public
Description: Really simple lightbox.
Homepage:
Clone URL: git://github.com/drogus/lightbox-fu.git
name age message
file .gitignore Tue Jun 24 08:24:55 -0700 2008 Git ignore [drogus]
file README Wed Jul 02 03:29:57 -0700 2008 Usage in readme [drogus]
directory example/ Tue Jun 24 10:34:11 -0700 2008 Explorer... is real pain [drogus]
directory images/ Tue Jun 24 08:35:54 -0700 2008 blank.gif for IE [drogus]
file jquery.lightBoxFu.js Thu Jul 03 07:15:14 -0700 2008 typo in styles [drogus]
directory lib/ Mon Jun 23 14:33:13 -0700 2008 Initial commit [drogus]
directory stylesheets/ Wed Jul 02 06:30:19 -0700 2008 IE doesn't want to hide lightbox [drogus]
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