Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Matthias Nörr
8,614 PointsJquery Lightbox Image Gallery: Image not fading in
Hi. My lightbox works well. Now I would like to apply a fade in effect to the images. Nothing happens. What is missing?
var $overlay = $('<div class="overlay"></div>');
var $image = $('<img class="nilo">');
$("html").append($overlay);
$overlay.append($image);
$(".lightbox a").click(function(event){
event.preventDefault();
var imageLocation = $(this).attr("href");
$image.attr("src", imageLocation);
$overlay.show();
$(".nilo").fadeIn( "slow" );
});
$overlay.click(function() {
$overlay.hide();
});
1 Answer
blake guyan
8,297 Pointswhy not just use the "show("slow")" tag from the previous lessons?