林中侠客

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

原理:

1.给页面绑定滚动事件;

2.加载页面的时候把真正的图片地址放在某属性中;

3.然后再滚动过程中判断元素是否进入当前浏览器窗口内;

4.最后加载图片,当然加载什么,用什哪种用户体验都得由你决定;
浏览器兼容是造成难点的原因所在,DOM标准和IE标准,每天前端的工作都在和它们打交道。思考下面的几段代码

1.window.pageYOffset ? window.pageYOffset : window.document.documentElement.scrollTop
目的:获得当前页面相对于窗口显示区左上角的 Y 位置.
DOM标准:window.pageYOffset;
IE标准:window.document.documentElement.scrollTop

2.window.innerHeight ? window.innerHeight : document.documentElement.clientHeight
目的:声明了窗口的文档显示区的高度和宽度,以像素计.
DOM标准:innerheight 和 innerwidth;
IE标准:document.documentElement 或 ducument.body (与 DTD 相关)的 clientWidth 和 clientHeight 属性作为替代

3.obj.getBoundingClientRect().top + window.document.documentElement.scrollTop + window.document.body.scrollTop
目的:获取页面元素的位置.
当浏览器为 非webkit内核 时,document.body.scrollTop值恒定为0,使用 document.documentElement.scrollTop才能取到正确值 ;
当浏览器为 webkit内核 时,document.documentElement.scrollTop值恒定为0,使用 document.body;
我还搜索到一种说法是和DTD相关(即 当页面指定了 DOCTYPE时,使用 document.documentElement ; 当页面没有指定了 DOCTYPE时,使用 document.body),请确定知道的朋友帮忙指出下,不胜感谢。

细节

 1.因为真正的地址最初是在某属性中(默认是xsrc,可自己设置),所以默认的图片地址最好是一个像素的透明图片,这样可以避免在浏览器中出现红X;

2.在图片load的时候可以加入等待的图片,这样用户才会知道这里有图片需要加载,良好的用户体验是前端一直所追求的(例子中有体现);

3.在图片load成功后可以加入合适的显示效果(例子中木有体现,可以自己尝试);

JavaScript源码如下:

[javascript]var scrollLoad = (function (options) {

var defaults = (arguments.length == 0) ? { src: 'xSrc', time: 300} : { src: options.src || 'xSrc', time: options.time ||300};

var camelize = function (s) {

return s.replace(/-(\w)/g, function (strMatch, p1) {

return p1.toUpperCase();

});

};

this.getStyle = function (element, property) {

if (arguments.length != 2) return false;

var value = element.style[camelize(property)];

if (!value) {

if (document.defaultView && document.defaultView.getComputedStyle) {

var css = document.defaultView.getComputedStyle(element, null);

value = css ? css.getPropertyValue(property) : null;

} else if (element.currentStyle) {

value = element.currentStyle[camelize(property)];

}

}

return value == 'auto' ? '' : value;

};

var _init = function () {

var offsetPage = window.pageYOffset ? window.pageYOffset : window.document.documentElement.scrollTop,

offsetWindow = offsetPage + Number(window.innerHeight ? window.innerHeight : document.documentElement.clientHeight),

docImg = document.images,

_len = docImg.length;

if (!_len) return false;

for (var i = 0; i < _len; i++) {

var attrSrc = docImg[i].getAttribute(defaults.src),

o = docImg[i], tag = o.nodeName.toLowerCase();

if (o) {

postPage = o.getBoundingClientRect().top + window.document.documentElement.scrollTop + window.document.body.scrollTop; postWindow = postPage + Number(this.getStyle(o, 'height').replace('px', ''));

if ((postPage > offsetPage && postPage < offsetWindow) || (postWindow > offsetPage && postWindow < offsetWindow)) {

if (tag === "img" && attrSrc !== null) {

o.setAttribute("src", attrSrc);

}

o = null;

}

}

};

window.onscroll = function () {

setTimeout(function () {

_init();

}, defaults.time);

}

};

return _init();

});
scrollLoad();[/javascript]

可传递一个参数设置src原地址和响应时间

scrollLoad({
src:'userSrc', //字符串型
time: 100 //数字型
})

posted on 2014-11-10 15:44  林中侠客  阅读(437)  评论(0)    收藏  举报