2010-01-28 197 views
-1
$(".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 
}); 

中的演示,演示了功能是作爲投資,並投資了功能相同,jQuery的幫助需要

我試圖反彈輔助導航欄了,然後隱藏它,在新的再淡出內容,然後反彈向下適當的按鈕點擊

據淡出不同的導航欄,然後在新的內容只是淡出了這一點,然後再次。

誰能告訴我什麼,我做錯了或者我怎麼能提高我在做什麼?

乾杯 本

+0

哎呀,不知何故在頂部切:( 「bottomnavinvest 」) 功能bottomnavinvestin(){ $顯示( '',函數(){ $()停下來。「 bottomnavinvest。」 ().animate({ '底部': '0像素'},800, 'easeOutBounce'); }); } 功能bottomnavinvestout(){ $( 「bottomnavinvest。」)停止()動畫({ '底部': '40像素'}, 800, 'easeInBounce', 功能(){ $( 「bottomnavinvest。」)隱藏(); }); } – user260931

+0

我如何格式化評論? – user260931

+0

您應該編輯問題而不是在評論中添加一些東西 並在編輯時嘗試使問題描述更易於理解;) – naugtur

回答

0

格式化你的問題後,它更容易看到:

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

$(".demolink").click(function(){ 
    if ($(".bottomnavinvest").is(':visible')); { //THIS ';' BREAKS THE CODE, REMOVE IT !!! 
     bottomnavinvestout(); 
    } 
    $("#contentinner").children().fadeOut(1000, function(){ 
     $('#demoreel').fadeIn(1000, function(){ 
      bottomnavdemoin(); 
     }); 
    }); 
    return false 
}); 

$(".investlink").click(function(){ 
    if ($(".bottomnavdemo").is(':visible')); { //THIS ';' BREAKS THE CODE, REMOVE IT !!! 
     bottomnavdemoout(); 
    };           //THIS ';' NOT NEEDED, REMOVE IT !!! 
    $("#contentinner").children().fadeOut(1000, function(){ 
     $('#investment').fadeIn(1000, function(){ 
      bottomnavinvestin(); 
     }); 
    }); 
    return false 
}); 

在你的代碼刪除所有這些額外;,它應該工作。