那个hammer.js只处理touchstart / touchend,而且它不能处理touchmove吗?
对于我的应用程序,我需要知道触摸的路径,更多细节,更好。
由于
帕特里克
答案 0 :(得分:1)
要获取触摸移动数据,您需要使用平移或滑动。这是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);