I'm trying to animate a simple image swap but it's not quite working right. Details below, here's my code thus far:
$('#zoom_control a').click(function(){ var oImg = $('.current_page').find('img'); oImg.animate({opacity: 0}, 1000, '',function(){ var sOldSrc = oImg.attr('src'); if (sOldSrc.indexOf("_zoom.png") > 0){ sNewSrc = sOldSrc.replace("_zoom.png", ".png"); $(this).html('Zoom out'); }else{ sNewSrc = sOldSrc.replace(".png", "_zoom.png"); $(this).html('Zoom in'); } oImg.attr('src', sNewSrc); oImg.animate({opacity: 1}, 1000); }); return false; }); So: find the image to be swapped, and animate its opacity down to 0. When the animation finishes, use the callback function to swap the src and animate the opacity back up to 1. Simple enough, and I was surprised not to find an existing plugin that does exactly that. If you know of one, you could probably save us both some trouble :) In any case, the problem with this one is that the image src swap seems to screw with the opacity. It's difficult to tell what it's doing exactly, but the image fades out ok, but then flashes back up briefly, then switches immediately to the new image. Any ideas?