码迷,mamicode.com
首页 > 其他好文 > 详细

jq demo 简单的图片懒加载效果

时间:2017-06-22 13:19:16      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:log   head   charset   att   width   title   pre   scroll   fse   

重点:在元素进入可视区域后,把图片元素的 _src 的值,赋值给 src

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<style>
div{ margin-top:300px; width:470px; height:150px; border:1px #000 solid;}
</style>
<script src="jquery-1.11.1.js"></script>
<script>
$(function(){
	toChange();
	function toChange(){
		$(‘img‘).each(function(i,elem){
			if($(elem).offset().top<$(window).height()+$(window).scrollTop()){
				$(elem).attr(‘src‘,$(elem).attr(‘_src‘));
			}
		});
	}
	$(window).scroll(toChange);	
});
</script>
</head>
<body>
<div><img _src="img/1.jpg"></div>
<div><img _src="img/2.jpg"></div>
<div><img _src="img/3.jpg"></div>
<div><img _src="img/4.jpg"></div>
<div><img _src="img/5.jpg"></div>
</body>
</html>

  

jq demo 简单的图片懒加载效果

标签:log   head   charset   att   width   title   pre   scroll   fse   

原文地址:http://www.cnblogs.com/xwnlh/p/7064171.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!