且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

平滑图像淡出,更改src,并使用jquery淡入

更新时间:2023-12-05 15:58:34

试试这个:

$('.click').click(function() {
   $('img.class').fadeOut(300, function(){
      $(this).attr('src','new_src.png').bind('onreadystatechange load', function(){
         if (this.complete) $(this).fadeIn(300);
      });
   });
});