1

这是一个简单的问题。jQuery 或 Javascript 中有没有办法确定 touchmove 事件的速度?我使用 css 来抓取元素并使其可抓取,这很好用,但如果我更快地移动手指,我不太可能移动到阈值距离,但我确实打算翻页,所以有什么方法可以确定javascript或jQuery中触摸移动事件的移动速度,我可以将阈值调整为较小的值以补偿速度?

    var startX, endX, difference, threshold; 
var startTime, endTime, timeDiff = 151;
$('#animate')
.bind("touchstart", function (e){ 
    e.preventDefault();
    var d = new Date();      
    startTime = d.getTime();
    startX = e.originalEvent.touches[0].pageX; //starting point
    })
.bind("touchmove", function (e){
    e.preventDefault();
    endX =e.originalEvent.changedTouches[0].pageX; //Get the information for finger 
    difference = startX - endX;  //calculate the distance moved.
    var moved = minusScreen - difference; //determine the affected css value.
    $(this).css("left",moved);  //this makes the element moves with my finger.
    })
.bind("touchend", function (e) { 
    var date = new Date();
    endTime = date.getTime();
    threshold = Math.abs(difference);
    timeDiff = endTime - startTime;
    if ((threshold > (screenWidth * 0.4)) || (timeDiff < 150))  //make the animation move only when the finger moved more than 30% of the page.
        {           
        if (endX > startX) turnLeft();
        else if (endX == startX) {} // havent decide what to do yet 
        else turnRight();
    } else {
        $(this).animate({"left": minusScreen}, 100);
    }
    startX=0; //set the value back to initial.
    endX=0;   //set the value back to initial.});
    });

谢谢你的好回答。以上是修改后的代码。工作得很好!!!

4

2 回答 2

8

像这样在 touchstart 和 touchend 上获取时间

startTime = new Date().getTime()endTime = new Date().getTime()

然后计算var speed = abs(endX-startX)/(endTime-startTime)这现在是您的整体触摸移动速度(以 px/ms 为单位)

于 2012-06-12T12:20:06.567 回答
3

虽然这是一个老问题,但触摸事件对象中似乎有一个“timeStamp”,所以简单地使用它可能更简单、更快:

startTime = e.timeStamp();

代替:

var d = new Date();      
startTime = d.getTime();

var endTime 也是一样

于 2015-10-23T11:55:13.690 回答