1秒后允许按键

时间:2013-03-26 11:51:33

标签: jquery animation delay keyup

我在按键上动画div,但是如果我向上按箭头2x然后我的动画会中断, 有没有办法我只能在1秒后才允许按键?

$(document).keyup(function(e){
    if (e.keyCode == 38) { 
        $('.selected').animate({'top':'300px'},500);
        $('.section.selected').removeClass('selected')
                              .next('.section').animate({'top':'0'},500)
                              .addClass('selected');
        return false;
    }
    e.preventDefault();
});

4 个答案:

答案 0 :(得分:1)

尽可能按字面意思实现您的要求:

var allowKeyPress = true;
$(document).keyup(function(e){
if (e.keyCode == 38) { 
    if (!allowKeyPress)
        return false;
    allowKeyPress = false;
    setTimeout(function() { allowKeyPress = true; }, 1000);

    $('.selected').animate({'top':'300px'},500);
    $('.section.selected').removeClass('selected').next('.section').animate({'top':'0'},500).addClass('selected');
    return false;    
  }    
  e.preventDefault();
});

也就是说,使用标志allowKeyPress - 在keyup上测试标志是否为false,如果是,则立即停止。否则,继续,将标记设置为false并使用setTimeout()安排函数在一秒钟后运行,将标志设置回true,当然还要运行动画。

答案 1 :(得分:1)

在触发进一步的动画之前检查元素是否正在动画化。:

$(document).keyup(function(e){
  if (e.keyCode == 38) { 
    if(!$('.selected').is(':animated')){

      $('.selected').animate({'top':'300px'},500);       
      $('.section.selected').removeClass('selected').next('.section').animate({'top':'0'},500).addClass('selected');
      return false;
    } 
  }    
  e.preventDefault();
});

答案 2 :(得分:0)

试试这个:

$(document).keyup(function(e){
     if (e.keyCode == 38 && !$('.selected').is(':animated')) { 
          $('.selected').animate({'top':'300px'},500);
          $('.section .selected').removeClass('selected')
                               .next('.section')
                               .animate({'top':'0px','position':'relative'},500)
                               .addClass('selected');
          return false;
      }
      e.preventDefault();
});

答案 3 :(得分:0)

您可以查看是否有任何元素是动画并取消新动画。 因此,将以下代码作为您的加密功能的第一行。

if($(".selected").is(":animated")) return;