欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js实现移动端导航点击自动滑动效果

程序员文章站 2023-02-24 08:33:52
本文实例为大家分享了js实现移动端导航点击滑动效果的具体代码,供大家参考,具体内容如下 移动端模拟导航可点击自动滑动 0.1.4。 导航可左右滑动,可点击边缘的一个...

本文实例为大家分享了js实现移动端导航点击滑动效果的具体代码,供大家参考,具体内容如下

移动端模拟导航可点击自动滑动 0.1.4。

导航可左右滑动,可点击边缘的一个,自动滚动下一个到可视范围【依赖于iscroll.js】。

废话不多说直接上代码:

/* 
 * 移动端模拟导航可点击自动滑动 0.1.4 
 * date: 2017-01-11 
 * by: xiewei 
 * 导航可左右滑动,可点击边缘的一个,自动滚动下一个到可视范围【依赖于iscroll.js】 
 */ 
(function ($) { 
 $.fn.navbarscroll = function (options) { 
  //各种属性、参数 
  var _defaults = { 
   classname:'cur', //当前选中点击元素的class类名 
   clickscrolltime:300, //点击后滑动时间 
   duibiscreenwidth:0.4, //单位以rem为准,默认为0.4rem 
   scrollerwidth:3, //单位以px为准,默认为3,[仅用于特殊情况:外层宽度因为小数点造成的不精准情况] 
   defaultselect:0, //初始选中第n个,默认第0个 
   fingerclick:0, //目标第0或1个选项触发,必须每一项长度一致,方可用此项 
   endclickscroll:function(thisobj){}//回调函数 
  } 
  var _opt = $.extend(_defaults, options); 
  this.each(function () { 
   //插件实现代码 
   var _wrapper = $(this); 
   var _win = $(window); 
   var _win_width = _win.width(),_wrapper_width = _wrapper.width(),_wrapper_off_left = _wrapper.offset().left; 
   var _wrapper_off_right=_win_width-_wrapper_off_left-_wrapper_width; 
   var _obj_scroller = _wrapper.children('.scroller'); 
   var _obj_ul = _obj_scroller.children('ul'); 
   var _obj_li = _obj_ul.children('li'); 
   var _scroller_w = 0; 
   _obj_li.css({"margin-left":"0","margin-right":"0"}); 
   for (var i = 0; i < _obj_li.length; i++) { 
    _scroller_w += _obj_li[i].offsetwidth; 
   } 
   _obj_scroller.width(_scroller_w+_opt.scrollerwidth); 
   var myscroll = new iscroll('#'+_wrapper.attr('id'), { 
    eventpassthrough: true, 
    scrollx: true, 
    scrolly: false, 
    preventdefault: false 
   }); 
   _init(_obj_li.eq(_opt.defaultselect)); 
   _obj_li.click(function(){ 
    _init($(this)); 
   }); 
   //解决pc端谷歌浏览器模拟的手机屏幕出现莫名的卡顿现象,滑动时禁止默认事件(2017-01-11) 
   _wrapper[0].addeventlistener('touchmove',function (e){e.preventdefault();},false); 
   function _init(thiobj){ 
    var $this_obj=thiobj; 
    var duibi=_opt.duibiscreenwidth*_win_width/10,this_index=$this_obj.index(),this_off_left=$this_obj.offset().left,this_pos_left=$this_obj.position().left,this_width=$this_obj.width(),this_prev_width=$this_obj.prev('li').width(),this_next_width=$this_obj.next('li').width(); 
    var this_off_right=_win_width-this_off_left-this_width; 
    if(_scroller_w+2>_wrapper_width){ 
     if(_opt.fingerclick==1){ 
      if(this_index==1){ 
       myscroll.scrollto(-this_pos_left+this_prev_width,0, _opt.clickscrolltime); 
      }else if(this_index==0){ 
       myscroll.scrollto(-this_pos_left,0, _opt.clickscrolltime); 
      }else if(this_index==_obj_li.length-2){ 
       myscroll.scrollby(this_off_right-_wrapper_off_right-this_width,0, _opt.clickscrolltime); 
      }else if(this_index==_obj_li.length-1){ 
       myscroll.scrollby(this_off_right-_wrapper_off_right,0, _opt.clickscrolltime); 
      }else{ 
       if(this_off_left-_wrapper_off_left-(this_width*_opt.fingerclick)<duibi){ 
        myscroll.scrollto(-this_pos_left+this_prev_width+(this_width*_opt.fingerclick),0, _opt.clickscrolltime); 
       }else if(this_off_right-_wrapper_off_right-(this_width*_opt.fingerclick)<duibi){ 
        myscroll.scrollby(this_off_right-this_next_width-_wrapper_off_right-(this_width*_opt.fingerclick),0, _opt.clickscrolltime); 
       } 
      } 
     }else{ 
      if(this_index==1){ 
       myscroll.scrollto(-this_pos_left+this_prev_width,0, _opt.clickscrolltime); 
      }else if(this_index==_obj_li.length-1){ 
       if(this_off_right-_wrapper_off_right>1||this_off_right-_wrapper_off_right<-1){ 
        myscroll.scrollby(this_off_right-_wrapper_off_right,0, _opt.clickscrolltime); 
       } 
      }else{ 
       if(this_off_left-_wrapper_off_left<duibi){ 
        myscroll.scrollto(-this_pos_left+this_prev_width,0, _opt.clickscrolltime); 
       }else if(this_off_right-_wrapper_off_right<duibi){ 
        myscroll.scrollby(this_off_right-this_next_width-_wrapper_off_right,0, _opt.clickscrolltime); 
       } 
      } 
     } 
    } 
    $this_obj.addclass(_opt.classname).siblings('li').removeclass(_opt.classname); 
    _opt.endclickscroll.call(this,$this_obj); 
   } 
  }); 
 }; 
})(jquery);

 截图:

js实现移动端导航点击自动滑动效果

提供地址:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。