我有這個小提琴。如果鼠標進入徽標,請停止fadeOut
現在它淡出鼠標離開的時候。但是當鼠標離開並再次輸入標誌時,我想清除超時。但是,當我清除超時時,該功能停止工作,因爲在啓動時沒有計時器。請幫助我,謝謝。
$('.logo').mouseenter(function(){
$('.bubble-container').fadeIn();
});
$('.logo').mouseleave(function(){
setTimeout(function() {
$('.bubble-container').fadeOut();
},1000);
});
完美地工作! – thenewseattle
哈哈,打我30秒。做得好。 –
你確定它可行嗎? http://jsfiddle.net/LTSSx/19/ – gibberish