javascript - Hammer.js pan event only for touch devices and not for desktop computer Click+Drag - Stack Overflow

I use this standard code for PanPinch (1) with Hammer.js : var mc = new Hammer(document.body);mc.add

I use this standard code for Pan / Pinch (1) with Hammer.js :

var mc = new Hammer(document.body);

mc.add(new Hammer.Pinch({ threshold: 0 })).recognizeWith(mc.get('pan'));

// let the pan gesture support all directions. this will block the vertical scrolling on a touch-device while on the element
mc.get('pan').set({ direction: Hammer.DIRECTION_ALL });
mc.on("panleft panright panup pandown tap press pinchstart pinchmove", function(ev) {
    $('#myElement').text(ev.type +" gesture detected. ev.scale=" + ev.scale + "  ev.deltaX,Y=" + ev.deltaX +'  ' + ev.deltaY);
});

How to get the hammer.js pan events only for touch devices and not for desktop puter Click+Drag? (because I have already working code for desktop puter click+drag, and I don't want to rewrite this!)

Note (1) : By the way, is this code good?, why is the recognizeWith really needed? :

I use this standard code for Pan / Pinch (1) with Hammer.js :

var mc = new Hammer(document.body);

mc.add(new Hammer.Pinch({ threshold: 0 })).recognizeWith(mc.get('pan'));

// let the pan gesture support all directions. this will block the vertical scrolling on a touch-device while on the element
mc.get('pan').set({ direction: Hammer.DIRECTION_ALL });
mc.on("panleft panright panup pandown tap press pinchstart pinchmove", function(ev) {
    $('#myElement').text(ev.type +" gesture detected. ev.scale=" + ev.scale + "  ev.deltaX,Y=" + ev.deltaX +'  ' + ev.deltaY);
});

How to get the hammer.js pan events only for touch devices and not for desktop puter Click+Drag? (because I have already working code for desktop puter click+drag, and I don't want to rewrite this!)

Note (1) : By the way, is this code good?, why is the recognizeWith really needed? :

Share Improve this question asked Oct 11, 2014 at 22:38 BasjBasj 46.6k110 gold badges456 silver badges807 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 9

You may force Hammer.js to use the input class that you want by setting inputClass option:

var hammer = Hammer(element, {
  inputClass: Hammer.TouchInput
})

You may want also to support pointer events when available:

var hammer = Hammer(element, {
  inputClass: Hammer.SUPPORT_POINTER_EVENTS ? Hammer.PointerEventInput : Hammer.TouchInput
})

Hammer.js has following inputClasses built in:

  • PointerEventInput
  • TouchInput
  • MouseInput
  • TouchMouseInput

You can check 'pointerType' property value in event (ev) object. It should be "mouse" for desktop.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743662289a4486397.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信