hammer.js是否只处理touchstart/touchend,而不处理touchmove?
对于我的应用程序,我需要知道触摸的路径,细节越多越好。
谢谢
帕特里克
发布于 2015-05-28 20:47:02
要获取触摸移动数据,您需要使用平移或滑动。下面是pan的示例代码:
var hammer = new Hammer(div);
// this sets pan to behave similar to normal touch/mouse input
// note that by setting the threshold to 0, pan will receive all inputs
hammer.get('pan').set({ direction: Hammer.DIRECTION_ALL, threshold: 0 });
hammer.on('panstart', touchstart);
hammer.on('panmove', touchmove);
hammer.on('panend', touchend);https://stackoverflow.com/questions/30218216
复制相似问题