JavaScript實現頁面滾動圖片加載

 

為什麼寫這篇文章?

  1.優化頁面很實用的方法,技術實現不難;

  2.搜索瞭相關內容的文章,好像都是用jQuery的方法,可是如果不用jQuery的站長難道就不能用這種方法瞭麼;

  3.做技術分享也是在讓更多人幫自己測試,因為這個本人木有在項目中實際用到,都是自己琢磨的,所有如果有問題請大傢指出,先謝謝瞭;

  4.這個月的博客還沒寫;

  5.剛好木有工作任務,此時不寫更待何時…

 

  現在的頁面大多都具有的特點- 內容豐富,圖片較多;像我們經常瀏覽的淘寶,京東,團購網站之類的(本人網購控,屬於一個月不在網上花點錢就不痛快),一個頁面幾十張圖片那叫毛毛雨,所以現在流行起瞭一個方法- 滾動動態加載。這個方法能解決很大程度的HTTP請求,首先頁面隻加載窗口顯示區的圖片,隻有等到頁面滾動,且滾動到相應位置的時候再去加載圖片,這樣做網頁加載快瞭(請求少瞭,加載的東西少瞭能不提快麼)。在《高性能網站建設指南》第一章就說到,減少HTTP請求的重要性,這是提高網頁前端性能,優化頁面加載速度很實用的做法。

 

 

  原理:

       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源碼如下:

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(); 

 

demo下載

 可傳遞一個參數設置src原地址和響應時間  

scrollLoad({

    src:'userSrc',//字符串型

    time: 100       //數字型

})

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *