基於zepto的插件之移動端無縫向上滾動並上下觸摸滑動

      該插件乃本博客做者所寫,目的在於提高做者的js能力,也給一些js菜鳥在使用插件時提供一些便利,老鳥就悠然地飛過吧。css

      公司的移動端項目是基於zepto的,有一個頁面要求文字可以無縫地不停向上滾動,但查了網上的資料,大多都是基於jquery的,雖然稍做修改就能夠用於移動端,但不能實現觸摸上下翻滾。因此就去了zepto的官網查看其API,卻發現若是要使用zepto的swipe()方法,須要引用其已經封裝好的touch.js文件,我就趕忙引用了這個js文件,可在實際測試中,官網給出的touch.js文件不能適用於swipe()方法,因而,一頭霧水,繼續查資料,因爲網上關於zepto方面的東西較少,因此,也沒有找出其不能適用於swipe()方法的緣由。後來,不經意間發現由百度雲Clouda團隊開發的一個touch.js(目前,該js也是由這個團隊在維護),在這個js環境下竟然能使用swipe()方法,因而,趕忙拿來測試。結果很OK哇!這裏要着重感謝百度雲Clouda團隊,大家真牛!!!  這裏給出該團隊開發的touchJS地址:Touch.js 。在這裏要注意,zepto自己是沒有animate()方法的,它是將這個方法封裝成了一個fx.js(去官網下載),因此在使用animate()時要引用fx.js。html

     若您以爲本插件有bug或不足之處,請留言,我將及時修改,謝謝!jquery

     如下是基於zepto的移動端無縫向上滾動並上下觸摸滑動插件的完整代碼:app

HTML部分:ide

<!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>無標題文檔</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>
<div 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>
</div>
<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, //數值越大,速度越慢
        line:10    //觸摸翻滾的條數
    });
    })
</script>
</body>

插件 zepto.textSlider.js 部分:測試

/*
* textSlider 0.1
* Copyright (c) 2014 tnnyang http://tnnyang.cnblogs.com/
* Dependence Zepto v1.1.6 & fx.js & touch-0.2.14.min.js
* Author by 小壞
*/ 
(function($){
    $.fn.textSlider = function(options){
    //默認配置
    var defaults = {
        speed:40,  //滾動速度,值越大速度越慢
        line:1     //滾動的行數
    };
    
    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開始,避免抖動
                        $(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);
        });
        
        //向上滑動
        _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);
            }
        });
        
        //向下滑動
        _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);
            }
        });
        
        //觸摸結束
        _this.on('touchend',function(ev){
            ev.preventDefault();
            if($ul.height() > _this.height()){
              marquee(_this, speed);
            }
        });        
    });
  }
})(Zepto);

 DEMO下載:基於zepto的插件之移動端無縫向上滾動並上下觸摸滑動this

相關文章
相關標籤/搜索