我有一个带有悬停动画的左侧导航 - 你可以在这里看到它: http ://www.wearewebstars.dk/frontend/test/boerneunivers2.html
如果您前:单击第二个导航项,则“li”获得一个类:当前-但是当离开“li”项时,它会崩溃-是因为一些javascript,但它不应该这样做“当前”李。在脚本中,只有当 LI 不是当前的 LI 时才应触发我的悬停功能 - 请在此处查看我的脚本:
$(".left-navigation ul li:not(.current)").hover(function( e ){
var mEnt = e.type=="mouseenter"; // boolean true/false
//alert(mEnt);
$(this).stop().animate({width: mEnt?'95%':35}, mEnt?100:0, function() {
$(this).find("span.nav-text").css({
display: mEnt? "inline-block" : "none"
});
});
});