0

我正在尝试制作一个动画信息语音气泡(我在这里找到了气泡的 css:http: //nicolasgallagher.com/pure-css-speech-bubbles/),每次我的鼠标悬停在链接上时,我都会创建一个 div infoBubble,当鼠标离开这个 div 时,我使用 .remove() 删除它。但是,当我将鼠标从一个链接快速移动到另一个链接时,.remove() 似乎不适用于第一个 buuble。

我的 jQuery 代码是:

infoBubble = function(el){
    setTimeout(function() {
        $('body').append('<div class="infoBubble"></div>');
        var bubble = $('.infoBubble:last');      
        var posTop = el.offset().top-el.height()-12;
        var posLeft = el.offset().left+el.width()/2-bubble.width()/2;
        bubble.css({ 'left':posLeft, 'top':posTop-10, 'background-color': 'rgba(0, 0, 0, 0.7)', 'opacity':1 });
            bubble.html('eeeeeeeeee');
            bubble.stop().animate({ 'top':posTop },200); 
        },400);

}

infoBubbleStop = function(){
    var bubble = $('.infoBubble:last');
    bubble.stop().animate({ 'opacity':0 }, 200, 'linear', function(){ bubble.remove(); });
}

$(document).on('mouseover', 'a', function () {
    infoBubble($(this)); 
}).on('mouseout', function() {
    infoBubbleStop();
});

这里有一个小提琴:http: //jsfiddle.net/malamine_kebe/YmKT4/

非常感谢您的帮助...

4

3 回答 3

2

问题是超时,尝试像这样修改一些你的逻辑,例如:

http://jsfiddle.net/YmKT4/6/

infoBubble = function (el) {
    $('body').append('<div class="infoBubble"></div>');
    var bubble = $('.infoBubble:last');
    var posTop = el.offset().top - el.height() - 12;
    var posLeft = el.offset().left + el.width() / 2 - bubble.width() / 2;
    bubble.hide().css({
        'left': posLeft,
        'top': posTop - 10,
        'background-color': 'rgba(0, 0, 0, 0)',
        'opacity': 1
    });

    setTimeout(function () {
        bubble.show().html('eeeeeeeeee');
        bubble.animate({
            'top': posTop,
            'background-color': 'rgba(0, 0, 0, 0.7)'
        }, 200);
    }, 400);

}
于 2013-04-29T18:00:06.970 回答
0

使用jQuery.stop()jumpToEnd函数的参数,即使停止动画,您也应该能够运行完整的函数。

现在的问题是你没有选择正确的bubble,你使用了那个:last,所以它永远是你刚刚创建的那个。

您应该为必须鼠标悬停的每个链接添加气泡:

http://jsfiddle.net/pboissonneault/YmKT4/4/

infoBubble = function(el){
            setTimeout(function(el) {
        el.append('<div class="infoBubble"></div>');
        var bubble = $('.infoBubble:last', el);      
        var posTop = el.offset().top-el.height()-12;
        var posLeft = el.offset().left+el.width()/2-bubble.width()/2;
        bubble.css({ 'left':posLeft, 'top':posTop-10, 'background-color': 'rgba(0, 0, 0, 0)', 'opacity':1 });
            bubble.html('eeeeeeeeee');
            bubble.stop().animate({ 'top':posTop, 'background-color': 'rgba(0, 0, 0, 0.7)' },200); 
        }(el),400);

}

infoBubbleStop = function(el){
    var bubble = $('.infoBubble:last', el);
    bubble.stop(true, true).animate({ 'opacity':0 }, 200, 'linear', function(){ bubble.remove(); });
}

$(document).on('mouseover', 'a', function () {
    infoBubble($(this)); 
}).on('mouseout', function() {
    infoBubbleStop($(this));
});
于 2013-04-29T17:56:08.027 回答
0

将 400 更改为 4 ,在下面的代码行中:

  infoBubble = function(el){
            setTimeout(function() {
        $('body').append('<div class="infoBubble"></div>');
        var bubble = $('.infoBubble:last');      
        var posTop = el.offset().top-el.height()-12;
        var posLeft = el.offset().left+el.width()/2-bubble.width()/2;
        bubble.css({ 'left':posLeft, 'top':posTop-10, 'background-color'rgba(0,   0, 0, 0)', 'opacity':1 });
            bubble.html('eeeeeeeeee');
            bubble.stop().animate({ 'top':posTop, 'background-color': 'rgba(0, 0, 0, 0.7)' },200); 
        },4);

}

infoBubbleStop = function(){
    var bubble = $('.infoBubble:last');
    bubble.stop().animate({ 'opacity':0 }, 5, 'linear', function(){ bubble.remove(); });
}

$(document).on('mouseover', 'a', function () {
    infoBubble($(this)); 
}).on('mouseout', function() {
    infoBubbleStop();
});
于 2013-04-29T18:03:19.543 回答