Hammer js>如何在页面滚动期间阻止水平平移

时间:2018-12-16 10:56:48

标签: javascript mobile touch hammer.js

我有一个页面,其中放置了一些水平幻灯片,并添加了平移和滑动。可悲的是,在移动设备上滚动时,如果您在幻灯片上方滚动,锤子将识别出平移,并让幻灯片稍微平移……不是那么漂亮。我正在考虑各种解决方案,但最明显的也许是在滚动过程中停止平移。有可能吗?这是我当前代码的摘录(很抱歉,有些方法来自父类。):

if(this.options.touch_enabled){
  this.hm = new Hammer(this.panels_box, {
    recognizers: [
      [Hammer.Swipe,{ direction: Hammer.DIRECTION_HORIZONTAL, threshold: 80 }]
      ,[Hammer.Pan,{ direction: Hammer.DIRECTION_HORIZONTAL, threshold: 80 }, ['swipe']]
    ]
    ,domEvents: false
  });

  this.hm.on('swipeleft', function(e){ if(this.options.next_condition()) this.goto('next', null, true); }.bind(this));
  this.hm.on('swiperight', function(e){ if(this.options.prev_condition()) this.goto('prev', null, true); }.bind(this));
  this.hm.on('panstart', function(e){ this.disable_transition(); }.bind(this));
  this.hm.on('panend', function(e){ this.enable_transition(); }.bind(this));

  this.hm.on('panleft', function(e){
    if(!this.options.loop){ if(this.data_box.getAttribute('data-current') >= this.bounds.end) return; }
    this.panels_strip.style.setProperty('--distance', e.deltaX + 'px');
  }.bind(this));
  this.hm.on('panright', function(e){
    if(!this.options.loop){ if(this.data_box.getAttribute('data-current') <= 0) return; }
    this.panels_strip.style.setProperty('--distance', e.deltaX + 'px');
  }.bind(this));
}// touch

1 个答案:

答案 0 :(得分:0)

对我来说,解决方案是检查deltaY和deltaX以及事件类型(因为在台式计算机上未发现问题)。这里是摘录:

this.hm.on('panleft', function(e){ // ...and same for panright
   if(e.pointerType == 'touch' && (Math.abs(e.deltaY) > Math.abs(e.deltaX))){ return false; }
   // do stuff
}