Changes

no edit summary
Line 6: Line 6:  
     });
 
     });
 
}
 
}
 +
 
$(document).ready(function() {
 
$(document).ready(function() {
 
     setInterval('AutoScroll("#scrollDiv")',5000);
 
     setInterval('AutoScroll("#scrollDiv")',5000);
 +
    //图片载入效果
 
     $('img').on('load', function(e){
 
     $('img').on('load', function(e){
 
         var target = $(this);
 
         var target = $(this);
         target.css('opacity', 0).animate({opacity:1}, 1000);
+
         target.css('opacity', 0).animate({opacity: 1}, 1000);
 
   });
 
   });
 
});
 
});
 +
    
/**
 
/**