1

我正在构建一个轮盘赌,它应该真实地旋转,并通过拖动轮子并放开它来操作。

我已经得到了 1:1 的旋转,我只需要让它在松开后真实地旋转。

我通过测量两帧之间的距离来计算力。

你可以在这里查看源代码:http ://www.techgoldmine.com/spinny_thing

4

1 回答 1

1

我不清楚您的问题,但您需要清除文档上 mouseup 的时间间隔。

$('.mouse_trap').mousedown(function(){
        intervalvar = setInterval(monitorClicks, 24);

        /*will clear the interval and unbind the function on first mouseup on the document*/
        $(document).one('mouseup', function ()
        {
            clearInterval(intervalvar);
        });
    });
于 2013-03-27T13:23:39.773 回答