http://www.wearewebstars.dk/frontend/Borneunivers/boerneunivers.htmlを見て 、左側のナビゲーションをクリックし始めると、ナビゲーションのリンクをクリックすると、あなたの元のリンク - アイデアはありますか? 私が持っているスクリプトは次のとおりです。
//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");
});
}
});