当鼠标停止移动时执行Jquery

时间:2013-06-22 15:53:03

标签: javascript jquery mouseevent

我有一个跟踪光标的快速脚本:

jQuery(document).ready(function(){
   $(document).mousemove(function(e){
       $('.fall').each(function(){
           if ($(this).css("opacity") == 0){
               $(this).remove();
           };
       });
       t = (e.pageY - 10).toString() + 'px';
       l = (e.pageX - 10).toString() + 'px';
       $('.fall').css("margin_left",l);
       $('.fall').css("margin_top",t);
       var doit = '<div class="fall" style="position:fixed;margin-left:' + l + ';margin-top:' + t + ';">+</div>'
       $('body').prepend(doit);
      $('#status2').html(e.pageX +', '+ e.pageY);

       $('.fall').animate({
           marginTop: '+=50px',
           opacity: 0
       },1000);       
   }); 
});

现在我想删除animate部分,并在鼠标不移动时使用以下内容:

$('.fall').each(function(){
    $(this).fadeOut('slow');
    $(this).remove()
});

当鼠标移动速度超过一秒钟时,我无法弄清楚如何执行此操作。有什么想法吗?

谢谢,here is a jsfiddle

2 个答案:

答案 0 :(得分:13)

添加一秒钟不活动后触发的超时,如果鼠标在1秒内移动则清除超时等等:

var timer;
$(document).on('mousemove', function(e){
   clearTimeout(timer);

   timer = setTimeout(function() {
       $('.fall').fadeOut('slow', function() {
           $(this).remove();
       });
   }, 1000);
});

FIDDLE

修改

以下是我的做法

FIDDLE

答案 1 :(得分:5)

这是你需要的吗? jsFiddle

lastTimeMouseMoved = new Date().getTime();
var t = setTimeout(function() {
  var currentTime = new Date().getTime();
  if (currentTime - lastTimeMouseMoved > 1000) {
    $('.fall').fadeOut('slow');
    // $('.fall').remove();
  }
}, 1000)