A cross fade between two images (where one fades out and the other fades in) requires two images, each with their own animation. You can't do it with just one image tag. You will need two images. There are ways to use a background image for one of the images, but frankly that's just more complicated than using two <img>
tags.
Here's some jQuery that implements a cross fade using two image tags:
// precache all images so they will load on demand
var imgs = [];
$('a.thumb').each(function() {
var img = new Image();
img.src = this.href;
imgs.push(img);
}).click(function () {
var oldImg = $("#fadeContainer img");
var img = new Image();
img.src = this.href;
var newImg = $(img).hide();
$("#fadeContainer").append(img);
oldImg.stop(true).fadeOut(500, function() {
$(this).remove();
});
newImg.fadeIn(500);
return false;
});
You can see it work here: http://jsfiddle.net/jfriend00/frXyP/
This is basically how it works:
- Get the current image
- Create new image object
- Fetch URL from the clicked on link and assign to new image tag
- Hide the new image
- Insert the new image into the fadeContainer
- Initiate fadeOut of existing image and fadeIn or new image
- When fadeOut finishes, remove that image so it's ready for the next cycle