如果你看看:http://www.wearewebstars.dk/frontend/Borneunivers/boerneunivers.html 並開始在左側導航中點擊左右,你會發現有時點擊導航欄中的鏈接時,它會隱藏你來自的鏈接 - 有任何想法嗎? 腳本我有,它是:leftnavigation animation does not fold in correcly
//Left navigation Animation
$(".left-navigation ul li").hover(function(){
if($(this).hasClass('current')){
} else {
$(this).animate({'width': '95%'}, 100, function() {
$(this).find("span.nav-text").delay(100).css("display", "inline-block");
});
}
}, function(){
if($(this).hasClass('current')){
} else {
$(this).animate({'width': '35px'}, 0, function() {
$(this).find("span.nav-text").css("display", "none");
});
}
});
當您單擊新的導航項目而不是懸停時,問題似乎就會發生。請在點擊導航項目時提供相關的代碼片段。 – Gloria