本文介绍了如何长按jquery.touchy.js的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好



你能告诉我如何使用jquery.touchy.js获得长按触摸事件的x和y坐标。



谢谢

Hello

can you please tell me how to get x and y coordinate of long press touch event using jquery.touchy.js .

Thanks

推荐答案

case 'longpress':
    data.startPoint = {
        "x": touches[0].pageX,
        "y": touches[0].pageY
    };
    data.startDate = e.timeStamp;
    if (settings.triggerStartPhase) {




这篇关于如何长按jquery.touchy.js的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-23 12:09