如果您查看此页面:http ://wearewebstars.dk/frontend/Test/boerneunivers2.html 然后单击左侧导航中的 ex: 第三个链接,然后您将看到该链接现在是当前链接-然后如果您将鼠标悬停在第四个链接上,然后第三个链接的宽度发生变化?想不通为什么?任何帮助将不胜感激...
我已经将 jquery 用于悬停效果,如下所示:
$(".left-navigation ul li:not(.current)").hover(function( e ){
var mEnt = e.type=="mouseenter"; // boolean true/false
$(this).stop().animate({width: mEnt?'100%':35}, mEnt?100:0, function() {
$(this).find("span.nav-text").css({
display: mEnt? "inline-block" : "none"
});
});
});