php延时加载js,原生javascript实现图片滚动、延时加载功能

这篇文章主要介绍了使用原生javascript实现图片滚动、延时加载功能,思路与方法均分享给大家,希望对大家能有所帮助。

实现效果:下拉滚动条时,图片出现在可见区域时,才开始加载

思路:

(1)img标签,把真实的图片地址,放在自己设置的属性里面,如 lazy-src

(2)获取img离页面的高度(在JQ里是offset().top),原生是:

img.getBoundingClientRect().top + document.body.scrollTop||document.documentElement.scrollTop

(3)判断img出现的位置是否在可见区域里:

在浏览器的可见区域,justTop>scrollTop&&offsetTop

var doc = document;

for(var n=0,i = this.oImg.length;n

//获取图片占位符图片地址

var hSrc = this.oImg[n].getAttribute(this.sHolder_src);

if(hSrc){

var scrollTop = doc.body.scrollTop||doc.documentElement.scrollTop,

windowHeight = doc.documentElement.clientHeight,

offsetTop = this.oImg[n].getBoundingClientRect().top + scrollTop,

imgHeight = this.oImg[n].clientHeight,

justTop = offsetTop + imgHeight;

// 判断图片是否在可见区域

if(justTop>scrollTop&&offsetTop

this.isLoad(hSrc,n);

}

}

}

以下为详细代码:function LGY_imgScrollLoad(option){

this.oImg = document.getElementById(option.wrapID).getElementsByTagName('img');

this.sHolder_src = option.holder_src;

this.int();

}

LGY_imgScrollLoad.prototype = {

loadImg:function(){

//保存document在变量里,减少对document的查询

var doc = document;

for(var n=0,i = this.oImg.length;n

//获取图片占位符图片地址

var hSrc = this.oImg[n].getAttribute(this.sHolder_src);

if(hSrc){

var scrollTop = doc.body.scrollTop||doc.documentElement.scrollTop,

windowHeight = doc.documentElement.clientHeight,

offsetTop = this.oImg[n].getBoundingClientRect().top + scrollTop,

imgHeight = this.oImg[n].clientHeight,

justTop = offsetTop + imgHeight;

// 判断图片是否在可见区域

if(justTop>scrollTop&&offsetTop

//alert(offsetTop);

this.isLoad(hSrc,n);

}

}

}

},

isLoad:function(src,n){

var src = src,

n = n,

o_img = new Image(),

_that = this;

o_img.onload = (function(n){

_that.oImg[n].setAttribute('src',src);

_that.oImg[n].removeAttribute(_that.sHolder_src);

})(n);

o_img.src = src;

},

int:function(){

this.loadImg();

var _that = this,

timer = null;

// 滚动:添加定时器,防止频繁调用loadImg函数

window.onscroll = function(){

clearTimeout(timer);

timer = setTimeout(function(){

_that.loadImg();

},100);

}

}

}

效果图:

5f0095f5e540616caf4946580daaf34a.png

以上就是本章的全部内容,更多相关教程请访问JavaScript视频教程!

本文原创发布php中文网,转载请注明出处,感谢您的尊重!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值