jQuery 鼠标移动动画

发布于 2024-09-25 08:36:16 字数 942 浏览 1 评论 0原文

我将 mousemove 事件处理程序与 jQuery 结合使用:

$(document).mousemove(function(e) { updateDownloadPosition(e); } );

它在 Chrome 中工作得很好,但我尝试过的所有其他浏览器直到鼠标停止移动才会触发 mousemove 事件,而不是每次移动时都会触发。

--编辑--

好的,正如 Tim Down 正确指出的那样,这不是 mousemove 事件,而是我的函数,所以现在我的重点是我的动画函数:

paralaxArray[i].object.animate(
            {marginLeft: newX},
            {duration: 3000,
            easing: 'easeOutExpo'});

为了让它正确重置mousemove 我正在使用 stop() 函数:

paralaxArray[i].object.stop().animate(

...但这会在 chrome 中产生断断续续的动画,所以现在我使用clearQueue:

paralaxArray[i].object.clearQueue();
paralaxArray[i].object.animate(
            {marginLeft: newX},
            {duration: 3000,
            easing: 'easeOutExpo'});

但是这样做(并使用 stop() )会导致除 chrome 之外的所有浏览器仅动画一次鼠标已停止移动。这可能是什么原因造成的?我必须编写自己的动画更新函数吗?

再次感谢:)

谢谢

I'm using the mousemove event handler with jQuery:

$(document).mousemove(function(e) { updateDownloadPosition(e); } );

It works perfectly in Chrome but every other browser I've tried the mousemove event isn't fired until the mouse stops moving, instead of constantly every time it moves.

--EDIT--

Ok so as Tim Down rightly pointed out, its not the mousemove event, its my function, so now my focus is on my animation function:

paralaxArray[i].object.animate(
            {marginLeft: newX},
            {duration: 3000,
            easing: 'easeOutExpo'});

In order to get this to reset properly on mousemove I was using the stop() function:

paralaxArray[i].object.stop().animate(

...but this produces choppy animation in chrome so now I'm using clearQueue:

paralaxArray[i].object.clearQueue();
paralaxArray[i].object.animate(
            {marginLeft: newX},
            {duration: 3000,
            easing: 'easeOutExpo'});

But doing it this way (and with stop() ) causes all browsers other than chrome to only animate once the mouse has stopped moving. What could be causing this?? Am I going to have to write my own animation update function?

Thanks again :)

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空城仅有旧梦在 2024-10-02 08:36:16

为了完成这个问题,我最终编写了自己的动画函数,然后它完美地工作了。

Just to finish off this question, I did end up writing my own animation function in the end which then worked perfectly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文