需要Jquery帮助

时间:2010-01-28 12:02:08

标签: jquery

$(".bottomnavinvest").stop().animate({'bottom' : '40px'}, 800, 'easeInBounce',  
    function(){                    
        $(".bottomnavinvest").hide();                         
    });
}

$(".demolink").click(function(){
    if ($(".bottomnavinvest").is(':visible')); {
        bottomnavinvestout();
    }
    $("#contentinner").children().fadeOut(1000, function(){
        $('#demoreel').fadeIn(1000, function(){
            bottomnavdemoin();
        });
    });
    return false
});

$(".investlink").click(function(){
    if ($(".bottomnavdemo").is(':visible')); {
        bottomnavdemoout();
    };
    $("#contentinner").children().fadeOut(1000, function(){
        $('#investment').fadeIn(1000, function(){
            bottomnavinvestin();
        });
    });
    return false
});

演示和演示功能与投资和投资功能相同,

我正试图反弹辅助导航栏然后将其隐藏,然后在新内容中淡出,然后在适当的按钮点击下反弹不同的导航栏

它正逐渐消失,然后在新内容中只会再次消失。

谁能告诉我我做错了什么,或者我如何改进我正在做的事情?

干杯 本

0 个答案:

没有答案