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

JavaScript

how to add effects

can any one help me to add effects on lightbox i want image when switching from one to another http://codepen.io/mehra_as/pen/rxrBMv

1 Answer

Steven Parker
Steven Parker
230,274 Points

If you just add timing values to your show and hide calls, you'll get a fade effect. The time is milliseconds, so try 400 to start (show(400)).

For the central image, you might call some animation function before you switch the image source, and then set a callback to switch it and reverse the effect, like this:

      image.fadeOut(400, function() {
        var src = current.children().attr("src");
        image.attr("src", src);
        image.fadeIn();
      });

You could replace fadeOut/fadeIn with animate(), and configure it for a number of different effects.