我在按键上为 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();
});