這篇文章給大家分享的是有關(guān)移動端開發(fā)之怎么用下拉刷新的方式實(shí)現(xiàn)上拉加載的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
目前創(chuàng)新互聯(lián)公司已為1000+的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、網(wǎng)站托管、服務(wù)器托管、企業(yè)網(wǎng)站設(shè)計(jì)、秦淮網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
實(shí)現(xiàn)上拉加載最普遍的方式就是監(jiān)聽滾動條的滾動事件,而移動端的下拉刷新利用的是transform屬性來進(jìn)行位移,那用下拉刷新的方式實(shí)現(xiàn)上拉加載怎么樣?
html結(jié)構(gòu)
這里我們做了兩個(gè)主要的盒子,在兩個(gè)盒子內(nèi)實(shí)現(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; //獲取實(shí)際高度的內(nèi)容 this.startY = 0; //起始點(diǎn)擊位置 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; //當(dāng)前的頁數(shù)(模擬用) // 模擬ajax function add(outDom) { var that = this; this.key = false; var str = ""; for (var i = 1;i < 11;i++) { str+=""+(i+((page)*10))+"" } page++; setTimeout(function () { var tips = outDom.querySelector(".tips"); //獲取提升 tips && outDom.removeChild(tips); //如果不是第一次 添加 str += "加載更多"; outDom.innerHTML += str; that.actualHeight = outDom.offsetHeight; that.key = true; },2000) }
原理也是很簡單,監(jiān)聽手勢事件判斷是否距離足夠,足夠就可以添加數(shù)據(jù)啦~~~
感謝各位的閱讀!關(guān)于“移動端開發(fā)之怎么用下拉刷新的方式實(shí)現(xiàn)上拉加載”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!