navbarscroll.js 5.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. * 绉诲姩绔ā鎷熷鑸彲鐐瑰嚮鑷姩婊戝姩 0.1.4
  3. * Date: 2017-01-11
  4. * by: xiewei
  5. * 瀵艰埅鍙乏鍙虫粦鍔紝鍙偣鍑昏竟缂樼殑涓€涓紝鑷姩婊氬姩涓嬩竴涓埌鍙鑼冨洿銆愪緷璧栦簬iscroll.js銆�
  6. */
  7. (function ($) {
  8. $.fn.navbarscroll = function (options) {
  9. //鍚勭灞炴€с€佸弬鏁�
  10. var _defaults = {
  11. className:'cur', //褰撳墠閫変腑鐐瑰嚮鍏冪礌鐨刢lass绫诲悕
  12. clickScrollTime:300, //鐐瑰嚮鍚庢粦鍔ㄦ椂闂�
  13. duibiScreenWidth:0.4, //鍗曚綅浠em涓哄噯锛岄粯璁や负0.4rem
  14. scrollerWidth:3, //鍗曚綅浠x涓哄噯锛岄粯璁や负3,[浠呯敤浜庣壒娈婃儏鍐碉細澶栧眰瀹藉害鍥犱负灏忔暟鐐归€犳垚鐨勪笉绮惧噯鎯呭喌]
  15. defaultSelect:0, //鍒濆閫変腑绗琻涓紝榛樿绗�0涓�
  16. fingerClick:0, //鐩爣绗�0鎴�1涓€夐」瑙﹀彂,蹇呴』姣忎竴椤归暱搴︿竴鑷达紝鏂瑰彲鐢ㄦ椤�
  17. endClickScroll:function(thisObj){}//鍥炶皟鍑芥暟
  18. }
  19. var _opt = $.extend(_defaults, options);
  20. this.each(function () {
  21. //鎻掍欢瀹炵幇浠g爜
  22. var _wrapper = $(this);
  23. var _win = $(window);
  24. var _win_width = _win.width(),_wrapper_width = _wrapper.width(),_wrapper_off_left = _wrapper.offset().left;
  25. var _wrapper_off_right=_win_width-_wrapper_off_left-_wrapper_width;
  26. var _obj_scroller = _wrapper.children('.scroller');
  27. var _obj_ul = _obj_scroller.children('ul');
  28. var _obj_li = _obj_ul.children('li');
  29. var _scroller_w = 0;
  30. _obj_li.css({"margin-left":"0","margin-right":"0"});
  31. for (var i = 0; i < _obj_li.length; i++) {
  32. _scroller_w += _obj_li[i].offsetWidth;
  33. }
  34. _obj_scroller.width(_scroller_w+_opt.scrollerWidth);
  35. var myScroll = new IScroll('#'+_wrapper.attr('id'), {
  36. eventPassthrough: true,
  37. scrollX: true,
  38. scrollY: false,
  39. preventDefault: false
  40. });
  41. _init(_obj_li.eq(_opt.defaultSelect));
  42. _obj_li.click(function(){
  43. _init($(this));
  44. });
  45. //瑙e喅PC绔胺姝屾祻瑙堝櫒妯℃嫙鐨勬墜鏈哄睆骞曞嚭鐜拌帿鍚嶇殑鍗¢】鐜拌薄锛屾粦鍔ㄦ椂绂佹榛樿浜嬩欢锛�2017-01-11锛�
  46. _wrapper[0].addEventListener('touchmove',function (e){e.preventDefault();},false);
  47. function _init(thiObj){
  48. var $this_obj=thiObj;
  49. 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();
  50. var this_off_right=_win_width-this_off_left-this_width;
  51. if(_scroller_w+2>_wrapper_width){
  52. if(_opt.fingerClick==1){
  53. if(this_index==1){
  54. myScroll.scrollTo(-this_pos_left+this_prev_width,0, _opt.clickScrollTime);
  55. }else if(this_index==0){
  56. myScroll.scrollTo(-this_pos_left,0, _opt.clickScrollTime);
  57. }else if(this_index==_obj_li.length-2){
  58. myScroll.scrollBy(this_off_right-_wrapper_off_right-this_width,0, _opt.clickScrollTime);
  59. }else if(this_index==_obj_li.length-1){
  60. myScroll.scrollBy(this_off_right-_wrapper_off_right,0, _opt.clickScrollTime);
  61. }else{
  62. if(this_off_left-_wrapper_off_left-(this_width*_opt.fingerClick)<duibi){
  63. myScroll.scrollTo(-this_pos_left+this_prev_width+(this_width*_opt.fingerClick),0, _opt.clickScrollTime);
  64. }else if(this_off_right-_wrapper_off_right-(this_width*_opt.fingerClick)<duibi){
  65. myScroll.scrollBy(this_off_right-this_next_width-_wrapper_off_right-(this_width*_opt.fingerClick),0, _opt.clickScrollTime);
  66. }
  67. }
  68. }else{
  69. if(this_index==1){
  70. myScroll.scrollTo(-this_pos_left+this_prev_width,0, _opt.clickScrollTime);
  71. }else if(this_index==_obj_li.length-1){
  72. if(this_off_right-_wrapper_off_right>1||this_off_right-_wrapper_off_right<-1){
  73. myScroll.scrollBy(this_off_right-_wrapper_off_right,0, _opt.clickScrollTime);
  74. }
  75. }else{
  76. if(this_off_left-_wrapper_off_left<duibi){
  77. myScroll.scrollTo(-this_pos_left+this_prev_width,0, _opt.clickScrollTime);
  78. }else if(this_off_right-_wrapper_off_right<duibi){
  79. myScroll.scrollBy(this_off_right-this_next_width-_wrapper_off_right,0, _opt.clickScrollTime);
  80. }
  81. }
  82. }
  83. }
  84. $this_obj.addClass(_opt.className).siblings('li').removeClass(_opt.className);
  85. _opt.endClickScroll.call(this,$this_obj);
  86. }
  87. });
  88. };
  89. })(jQuery);