//ͼƬÑÓʱ¼ÓÔØ $('img[data-src]').live('inview', function(event, isVisible) { if (!isVisible) { return; } var img = $(this); // Show a smooth animation img.css('opacity', 0); img.load(function() { img.animate({ opacity: 1 }, 500); }); // Change src img.attr('src', img.attr('data-src')); // Remove it from live event selector img.removeAttr('data-src'); }); function tabs(e1, e2){ var e1 = $(e1); var e2 = $(e2); e1.mouseover(function(){ if(!$(this).hasClass('on')){ e1.removeClass('on'); $(this).addClass('on'); var idx = e1.index(this); e2.hide(); $(e2[idx]).show(); } }); e1.click(function(){ return false; }) }