普通情况下的图片懒性加载 简单封装图片预加载函数

普通情况下的图片懒性加载 简单封装图片预加载函数:

;(function($){
	$.fn.lazyLoad=function(options){
		$(this).find('img[_src]').each(function(){
			if($(this).offset().top<= $(window).scrollTop() + $(window).height())
			$(this).attr('src',$(this).attr('_src')).removeAttr('_src');
		});
	}
})(jQuery)

引用方式:

$(function(){
	$('#box').lazyLoad();
	$(window).scroll(function(){
		$('#box').lazyLoad();
	})
})





你可能感兴趣的:(函数,图片预加载,简单封装,图片懒性加载)