jQuery:触发“mousestop”的简单方法事件

发布于 2024-10-19 02:33:12 字数 303 浏览 5 评论 0原文

嗨,

我试图在鼠标停止移动 x 秒时调用一个函数。实际上,使用以下代码非常简单:

var timer = null;
$(document).mousemove(function(){
  clearTimeout (timer);
  timer = setTimeout(myfunction, 5000);
});

但是 mousemove 事件被频繁调用,因此在移动鼠标时,Firefox 中的处理器负载相当重。有没有一种简单的方法可以用更少的函数调用来做同样的事情???

谢谢! 扬

HI,

I'm trying to call a function when the mouse stopped moving for x seconds. Actually thats pretty easy with the following code:

var timer = null;
$(document).mousemove(function(){
  clearTimeout (timer);
  timer = setTimeout(myfunction, 5000);
});

But the mousemove event is called very often, so I get a pretty heavy processor load in Firefox while moving the mouse. Is there an easy way to do the same thing with less function calls???

Thanx!
Jan

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

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

发布评论

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

评论(2

原野 2024-10-26 02:33:12

使用此选项并将延迟选项设置为 x 秒

http://www.richardscarrott .co.uk/posts/view/jquery-mousestop-event

Use this and set the delay option for x seconds

http://www.richardscarrott.co.uk/posts/view/jquery-mousestop-event

昔日梦未散 2024-10-26 02:33:12

看一下jQuery hideIntent插件

用法与jQuery悬停,但该事件仅在短暂的、可配置的延迟后触发。

$('myselector').hoverIntent(
        function () { HoverIn(); },
        function () { HoverOut(); }
);

Take a look at the jQuery hoverIntent plugin

Usage is the same as jQuery hover, but the event only fires after a short, configurable delay.

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