您好,登錄后才能下訂單哦!
小編給大家分享一下zepto如何實(shí)現(xiàn)移動(dòng)端無(wú)縫向上下滾動(dòng)功能,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
公司的移動(dòng)端項(xiàng)目是基于zepto的,有一個(gè)頁(yè)面要求文字能夠無(wú)縫地不停向上滾動(dòng),但查了網(wǎng)上的資料,大多都是基于jquery的,雖然稍作修改就可以用于移動(dòng)端,但不能實(shí)現(xiàn)觸摸上下翻滾。所以就去了zepto的官網(wǎng)查看其API,卻發(fā)現(xiàn)如果要使用zepto的swipe()方法,需要引用其已經(jīng)封裝好的touch.js文件,我就趕緊引用了這個(gè)js文件,可在實(shí)際測(cè)試中,官網(wǎng)給出的touch.js文件不能適用于swipe()方法,于是,一頭霧水,繼續(xù)查資料,由于網(wǎng)上關(guān)于zepto方面的東西較少,所以,也沒(méi)有找出其不能適用于swipe()方法的原因。后來(lái),不經(jīng)意間發(fā)現(xiàn)由百度云Clouda團(tuán)隊(duì)開發(fā)的一個(gè)touch.js(目前,該js也是由這個(gè)團(tuán)隊(duì)在維護(hù)),在這個(gè)js環(huán)境下居然能使用swipe()方法,于是,趕緊拿來(lái)測(cè)試。結(jié)果很OK哇!這里要著重感謝百度云Clouda團(tuán)隊(duì),你們真牛?。。? 在這里要注意,zepto本身是沒(méi)有animate()方法的,它是將這個(gè)方法封裝成了一個(gè)fx.js(去官網(wǎng)下載),所以在使用animate()時(shí)要引用fx.js。
以下是基于zepto的移動(dòng)端無(wú)縫向上滾動(dòng)并上下觸摸滑動(dòng)插件的完整代碼:
HTML部分:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" > <title>無(wú)標(biāo)題文檔</title> <style> *{margin:0;padding:0} li{list-style:none;} .box{margin:20px;width:200px;height:128px;overflow:hidden;border:1px solid #ccc;padding:5px 10px 15px;font-size:14px;} .box ul li{line-height:20px;} </style> </head> <body> <p class="box"> <ul> <li>11111111111222222</li> <li>2222222202</li> <li>3333333303</li> <li>4444444404</li> <li>5555555505</li> <li>6666666606</li> <li>1111111111</li> <li>2222222202</li> <li>3333333303</li> <li>4444444404</li> <li>5555555505</li> <li>6666666606</li> </ul> </p> <script src="zepto.min.js"></script> <script src="fx.js"></script> <script src="touch-0.2.14.min.js"></script> <script src="zepto.textSlider.js"></script> <script> $(function(){ $(".box").textSlider({ speed: 50, //數(shù)值越大,速度越慢 line:10 //觸摸翻滾的條數(shù) }); }) </script> </body>
插件 zepto.textSlider.js 部分:
/* * textSlider 0.1 * Copyright (c) 2014 tnnyang * Dependence Zepto v1.1.6 & fx.js & touch-0.2.14.min.js * Author by 小壞 */ (function($){ $.fn.textSlider = function(options){ //默認(rèn)配置 var defaults = { speed:40, //滾動(dòng)速度,值越大速度越慢 line:1 //滾動(dòng)的行數(shù) }; var opts = $.extend({}, defaults, options); var $timer; function marquee(obj, _speed){ var top = 0; var margintop; $timer = setInterval(function(){ top++; margintop = 0-top; obj.find("ul").animate({ marginTop: margintop },0,function(){ var s = Math.abs(parseInt($(this).css("margin-top"))); if(s >= 20){ top = 0; $(this).css("margin-top", 0); //確保每次都是從0開始,避免抖動(dòng) $(this).find("li").slice(0, 1).appendTo($(this)); } }); }, _speed); } this.each(function(){ var speed = opts["speed"],line = opts["line"],_this = $(this); var $ul =_this.find("ul"); if($ul.height() > _this.height()){ marquee(_this, speed); } //觸摸開始 _this.on('touchstart', function(ev){ ev.preventDefault(); clearInterval($timer); }); //向上滑動(dòng) _this.on('swipeup', function(ev){ ev.preventDefault(); clearInterval($timer); if($ul.height() > _this.height()){ for(i=0;i<opts.line;i++){ $ul.find("li").first().appendTo($ul); } $ul.css("margin-top",0); } }); //向下滑動(dòng) _this.on('swipedown', function(ev){ ev.preventDefault(); clearInterval($timer); if($ul.height() > _this.height()){ for(i=0;i<opts.line;i++){ $ul.find("li").first().before($ul.find("li").last()); } $ul.css("margin-top",0); } }); //觸摸結(jié)束 _this.on('touchend',function(ev){ ev.preventDefault(); if($ul.height() > _this.height()){ marquee(_this, speed); } }); }); } })(Zepto);
以上是zepto如何實(shí)現(xiàn)移動(dòng)端無(wú)縫向上下滾動(dòng)功能的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。