/* LightBox */
function shadowEffectIn(){
$('#shadow').fadeTo(100,0.3);
$(this).css('z-index', '200');
}
function shadowEffectOut(){
$('#shadow').stop().fadeTo(100,0, function(){
$('#shadow').hide();
});
$(this).css('z-index', '1');
}
$('#blog').hover(shadowEffectIn, shadowEffectOut);
$('#instruction a').click(lightbox);
$('.close').click(fechaLightbox);
function lightbox(){
$('#shadow').fadeIn('200');
$('#lightbox').fadeIn('200');
return false;
}
function fechaLightbox(){
$('#shadow').fadeOut('200');
$('#lightbox').fadeOut('200');
return false;
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.