I have the code:
jQuery(img).each(function() {
jQuery(this).animate({opacity: 0});
jQuery(this).animate({opacity: 1},4000);
});
The code changes images opacity to 0 and then to 1. The point is it happens to all images while I want it to work for one image at the time.
Any ideas how to achieve this?
Okay, here’s my stab at it.
Demo demo demo