我正在建造一个轮盘赌,应该现实地旋转,并通过拖动轮子让它去运行。
我已经以1:1的速度向下旋转,我只需要让它在它被释放后实际旋转。
我通过测量两帧之间的距离来计算力。
您可以在此处查看源代码:http://www.techgoldmine.com/spinny_thing
答案 0 :(得分:1)
我不清楚你的问题,但你需要清除文档上鼠标的间隔。
$('.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);
});
});