12

我有一个快速脚本,它有一个跟随光标的轨迹:

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()
});

当鼠标不动超过一秒钟时,我只是不知道如何执行此操作。有任何想法吗?

谢谢,这是一个jsfiddle

4

2 回答 2

15

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

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

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

小提琴

编辑:

这是我的做法

小提琴

于 2013-06-22T16:01:31.107 回答
7

这是你需要的吗?jsFiddle

lastTimeMouseMoved = new Date().getTime();
var t = setTimeout(function() {
  var currentTime = new Date().getTime();
  if (currentTime - lastTimeMouseMoved > 1000) {
    $('.fall').fadeOut('slow');
    // $('.fall').remove();
  }
}, 1000)
于 2013-06-22T16:06:38.177 回答