0
我有這樣的代碼:如何延遲mouseout功能?
var shortcuts = $('#geo_shortcuts');
shortcuts.find('li').hoverIntent(
function() {
// Open the Panel
$(this).find('.geo_shortcuts_content').stop().animate({
top: '-122'
}, 300);
},
function() {
//Close de Panel
$(this).find('.geo_shortcuts_content').stop().animate({
top: '0'
}, 400);
}
);
我該怎麼辦,只允許2秒鼠標移出後關閉面板?我知道我應該做一個settimeout函數,但我不知道如何。
thak你Boulilou,這解決了我的問題 – user1384644
永遠幸福幫助。你能用綠色勾號來關閉這個話題嗎? – sdespont