jq demo 简单的图片懒加载效果
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jq demo 简单的图片懒加载效果相关的知识,希望对你有一定的参考价值。
重点:在元素进入可视区域后,把图片元素的 _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 简单的图片懒加载效果的主要内容,如果未能解决你的问题,请参考以下文章