[JS]分级图片加载

2017-4-4 写技术

在页面中使用分级图片加载的方法一个:

<script src="jquery.min.js"></script>
<script>
var acimg = function(ac_style, ac_high){
	if(!ac_style){
		ac_style="anycle";
	}
	if(!ac_high){
		ac_high="high";
	}
	var _ac_filter = "img."+ac_style;
	$(_ac_filter).each(function(){
		_ac_src = $(this).attr(ac_high);
		$(this).attr('src', _ac_src);
	});
}
$(function(){
	acimg();
});
</script>

使用实例:

<img class="anycle" high="big.jpg" src="little.jpg" />

标签: JS

发表评论:

Powered by anycle 湘ICP备15001973号-1