限制和动画功能

时间:2013-08-24 16:47:06

标签: javascript jquery function jquery-animate

我确信这个问题已经有很多答案,但问题是我不知道该搜索什么。我基本上希望使用animate函数在用户将鼠标放在另一个对象上时向上移动元素,并在将鼠标移出鼠标时将其移回。我得到它工作正常但我不知道如何限制它,以便他们不能移动鼠标进出元素很多次非常快,然后停止对象继续动画多次当他们进入元素时。

$('.cover_1').mouseover(function() {
    $('.pop_1').animate({bottom: "0px"}, 100);
}).mouseout(function(){
    $('.pop_1').animate({bottom: "-300px"}, 100);
});  

这是我现在的代码。

1 个答案:

答案 0 :(得分:3)

尝试使用stop method,如此:

$('.cover_1').mouseover(function() {
    $('.pop_1').stop(true,true).animate({bottom: "0px"}, 100);
}).mouseout(function(){
    $('.pop_1').stop(true, true).animate({bottom: "-300px"}, 100);
});