您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)移動端開發(fā)之怎么用下拉刷新的方式實現(xiàn)上拉加載的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
實現(xiàn)上拉加載最普遍的方式就是監(jiān)聽滾動條的滾動事件,而移動端的下拉刷新利用的是transform屬性來進行位移,那用下拉刷新的方式實現(xiàn)上拉加載怎么樣?
html結(jié)構(gòu)
<div class="main-box" id="box1"> <div class="popup-box"> </div> </div> <div class="main-box" id="box2"> <div class="popup-box"> </div> </div>
這里我們做了兩個主要的盒子,在兩個盒子內(nèi)實現(xiàn)上拉加載。結(jié)構(gòu)很簡單。
css樣式
* { margin: 0; padding: 0; } .main-box { background: skyblue; width: 100%; height: 300px; overflow: hidden; } .popup-box { width: 100%; } .item { width: 100%; line-height: 40px; text-align: center; padding: 20px; box-sizing: border-box; } .tips{ text-align: center; } #box2 { margin-top: 50px; }
最外面的盒子設(shè)置overflow: hidden;中間盒子不設(shè)置高度,靠子盒子item撐起。
js代碼
/*下拉加載*/ function tDscroll(obj) { this.key = true; //防止重復(fù)的請求 this.dom = obj.dom; //傳入的dom this.fn = obj.fn; //回調(diào)函數(shù) this.outDom = this.dom.querySelector(".popup-box"); //獲取內(nèi)容盒子 this.showHeight = dom.offsetHeight; //顯示的高度 this.actualHeight = this.outDom.offsetHeight; //獲取實際高度的內(nèi)容 this.startY = 0; //起始點擊位置 this.changedY = 0; //手指移動的距離 this.originY = 0; //偏移量 var that = this; this.dom.addEventListener("touchstart",function (ev) { that.onStart(ev); }); this.dom.addEventListener("touchmove",function (ev) { that.onMove(ev); }); this.dom.addEventListener("touchend",function (ev) { that.onEnd(ev); }); this.fn.call(this,this.outDom); }; tDscroll.prototype.onStart = function (ev) { this.startY = ev.targetTouches[0].clientY; var tempArr = window.getComputedStyle(this.outDom).transform.split(","); if (tempArr.length > 2) { this.originY = parseInt(tempArr[tempArr.length - 1]) || 0; } }; tDscroll.prototype.onMove = function (ev) { this.changedY = ev.touches[0].clientY - this.startY; var changNum = (this.originY + this.changedY); var scrollHeight = -changNum + this.showHeight; if (changNum > 50)return; if (scrollHeight > this.actualHeight + 50)return; if (scrollHeight > this.actualHeight - 50 && this.key) { this.fn.call(this,this.outDom); } this.outDom.style.cssText = "transform: translateY(" + changNum + "px);"; }; tDscroll.prototype.onEnd = function() { if ((this.originY + this.changedY) > 50 ) { this.outDom.style.cssText = "transform: translateY(0px);transition:all .3s"; } if (-(this.originY + this.changedY) + this.showHeight > this.actualHeight + 50) { this.outDom.style.cssText = "transform: translateY(-"+(this.actualHeight - this.showHeight)+"px);transition:all .3s"; } }; var dom = document.querySelector("#box1"); //獲取dom var dom2 = document.querySelector("#box2"); //獲取dom var obj = { dom : dom, fn : add }; var obj2 = { dom : dom2, fn : add }; new tDscroll(obj); new tDscroll(obj2); var page = 0; //當前的頁數(shù)(模擬用) // 模擬ajax function add(outDom) { var that = this; this.key = false; var str = ""; for (var i = 1;i < 11;i++) { str+="<div class='item'>"+(i+((page)*10))+"</div>" } page++; setTimeout(function () { var tips = outDom.querySelector(".tips"); //獲取提升 tips && outDom.removeChild(tips); //如果不是第一次 添加 str += "<div class='tips'>加載更多</div>"; outDom.innerHTML += str; that.actualHeight = outDom.offsetHeight; that.key = true; },2000) }
原理也是很簡單,監(jiān)聽手勢事件判斷是否距離足夠,足夠就可以添加數(shù)據(jù)啦~~~
感謝各位的閱讀!關(guān)于“移動端開發(fā)之怎么用下拉刷新的方式實現(xiàn)上拉加載”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。