這個實例應該說可以很簡單,直接使用jQuery的方法來處理也是可以的。但本文底層使用原生的js來處理,遇到一些小知識點可以分析一下也算有所得。
原理很簡單,就是為window添加一個scroll事件,瀏覽器每次觸發scroll事件時判斷是否滾動到了瀏覽器底部,如果到了底部則加載新數據。關鍵是計算滾動條是否滾動到了瀏覽器底部,演算法如下
滾動條捲起來的高度+ 視窗高度> 文件的總高度+ 50/*我這裡將滾動回應區域高度取50px*/;如果這個判斷為true則表示滾動條滾動到了底部。
實例
<style type="text/css"> html,body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td{ margin: 0; padding:0; } *{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .waterfllow-loading{ z-index: 2000; display:none; } .waterfllow-loading.active{ display:block; } .waterfllow-loading img.loading-progress{ position: fixed; /*设置等待条水平居于窗口正中*/ margin-left: auto; margin-right: auto; left: 0; right: 0; /*不能设置margin-top:auto和margin-bottom:auto否则IE下bottom就不顶用了*/ bottom: 30px; } </style> <div class="waterfllow-loading"> <img class="loading-progress" src="busy.gif"> </div> <script type="text/javascript"> //图片查询中正对浏览器主页面滚动事件处理(瀑布流)。只能使用window方式绑定,使用document方式不起作用 $(window).on('scroll',function(){ if(scrollTop() + windowHeight() >= (documentHeight() - 50/*滚动响应区域高度取50px*/)){ waterallowData(); } }); function waterallowData(){ $('.waterfllow-loading').addClass('active'); /*$.ajax({ url:url, type:"post", data: params, success:function(data,textStatus,jQXHR){ //添加数据 ... //隐藏加载条 $('.waterfllow-loading.active').removeClass('active'); } });*/ }
取得頁面頂部被捲起來的高度函數
//获取页面顶部被卷起来的高度 function scrollTop(){ return Math.max( //chrome document.body.scrollTop, //firefox/IE document.documentElement.scrollTop); }
chrome瀏覽器和Firefox/IE對捲軸是屬於body還是html理解不同導致處理不同。
取得頁面文件的總高度
//获取页面文档的总高度 function documentHeight(){ //现代浏览器(IE9+和其他浏览器)和IE8的document.body.scrollHeight和document.documentElement.scrollHeight都可以 return Math.max(document.body.scrollHeight,document.documentElement.scrollHeight); }
這個演算法和jQuery計算文檔高度的方法一致。
取得頁面瀏覽器視窗的高度
function windowHeight(){ return (document.compatMode == "CSS1Compat")? document.documentElement.clientHeight: document.body.clientHeight; }
這裡要說明的是document.compatMode這個東東。很陌生,一般情況似乎沒有遇過。
document.compatMode有兩個取值"BackCompat"和"CSS1Compat"。官方解釋是BackCompat:標準相容模式關閉。 CSS1Compat:標準相容模式開啟。
IE對盒模型的渲染在Standards Mode和Quirks Mode是有很大差別的,在Standards Mode下對於盒模型的解釋和其他的標準瀏覽器是一樣,但在Quirks Mode模式下則有很大差別,而在不宣告Doctype的情況下,IE預設又是Quirks Mode。
舉個例子說明兩種模式之間的差異有多大。
當document.compatMode等於"BackCompat"時,瀏覽器客戶區寬度是document.body.clientWidth;
當document.compatMode等於CSS1Compat時,瀏覽器客戶區寬度是document.documentElement.clientWidth。
還有其他屬性類似。這裡不說了,但是我們可以預見兩種模式導致IE渲染的基石都更改了,可想而知建造出來的建築物差異當有多大。
所以請為每個頁面聲明Doctype不只是一個好習慣,而且是一個必要的處理。 Quirks Mode可以進垃圾堆了。
好了下面附上完整的程式碼,有一個小例子(沒有後台刷數據,只是顯示等待條)
<!DOCTYPE html> <html lang="ch-cn"> <head> <meta charset="utf-8"> <script type="text/javascript" src='jquery-1.9.1.js'></script> <style type="text/css"> html,body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td{ margin: 0; padding:0; } *{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .waterfllow-loading{ z-index: 2000; display:none; } .waterfllow-loading.active{ display:block; } .waterfllow-loading img.loading-progress{ position: fixed; /*设置等待条水平居于窗口正中*/ margin-left: auto; margin-right: auto; left: 0; right: 0; /*不能设置margin-top:auto和margin-bottom:auto否则IE下bottom就不顶用了*/ bottom: 30px; } </style> </head> <body style="background:#ff0;height:1000px;"> <div class="waterfllow-loading"> <img class="loading-progress" src="busy.gif"> </div> </body> <script type="text/javascript"> //获取页面顶部被卷起来的高度 function scrollTop(){ return Math.max( //chrome document.body.scrollTop, //firefox/IE document.documentElement.scrollTop); } //获取页面文档的总高度 function documentHeight(){ //现代浏览器(IE9+和其他浏览器)和IE8的document.body.scrollHeight和document.documentElement.scrollHeight都可以 return Math.max(document.body.scrollHeight,document.documentElement.scrollHeight); } //获取页面浏览器视口的高度 function windowHeight(){ //document.compatMode有两个取值。BackCompat:标准兼容模式关闭。CSS1Compat:标准兼容模式开启。 return (document.compatMode == "CSS1Compat")? document.documentElement.clientHeight: document.body.clientHeight; } </script> <script type="text/javascript"> //图片查询中正对浏览器主页面滚动事件处理(瀑布流)。只能使用window方式绑定,使用document方式不起作用 $(window).on('scroll',function(){ if(scrollTop() + windowHeight() >= (documentHeight() - 50/*滚动响应区域高度取50px*/)){ waterallowData(); } }); function waterallowData(){ $('.waterfllow-loading').addClass('active'); /*$.ajax({ url:url, type:"post", data: params, success:function(data,textStatus,jQXHR){ //添加数据 ... //隐藏加载条 $('.waterfllow-loading.active').removeClass('active'); } });*/ } </script> </html>
裡面的載入條圖片為
以上就是滾動條滾動到頁面底部繼續載入的處理實例,希望對大家的學習有所幫助。