liteFlick « visit
This is my Source Code and I don't want to show it here
View Source Code only (as overlay)
// That code snippet belongs to liteFlick - http://liteflick.com
// loop through images
$(images).each(function(index,value){
// create the LI programatically
var list = $('<li id="portfolio_'+index+'"></li>').attr('class','loading').html(info[index]);
// append the new LI to UL
$('ul#portfolio').append(list);
// current LI object
var curr = $("ul#portfolio li#portfolio_"+index);
// new image
var img = new Image();
// load image
$(img).load(function () {
$(this).css('display','none'); // since .hide() failed in safari
$(curr).removeClass('loading').children().append(this);
$(this).fadeIn(); //.show(); //.fadeIn();
}).error(function () {
$(curr).remove();
}).attr('src', value);
});
$("a.lightbox-enabled").lightBox();
Syndicate
Categories
Statistics
There are 330 Sites with 745 Links of Interest in 18 Categories. The latest Site was added 4 months ago.
About
This is a project by Sebastian Senf, for his part jQuery user and lover too. Follow me.