public
Description: Really simple lightbox.
Clone URL: git://github.com/drogus/lightbox-fu.git
drogus (author)
Thu Jul 03 07:15:14 -0700 2008
commit  d5ba1da82f2cbf6b8de669ee9d9ade9b445e1c9b
tree    c67a43f35a1d4e4f52b0d95d96297582d45e350c
parent  2b92eae5fab7f7fd54a00df3e479bc4cdee4ae87
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