從NETTUTS看到的文章,效果很不錯,有點類似于Flash做出來的效果,demo在這里 ,原文 對實現步驟講得很清楚,我就不多提了,實現效果的邏輯比較簡單,也就是slideDown()方法, 
jquery slideDown()方法,實現滑動效果。
復制代碼 代碼如下:
// shows a given element and hides all others  
function showViaKeypress(element_id)  
{  
    $(".container").css("display","none");  
    $(element_id).slideDown("slow");  
}  
// shows proper DIV depending on link 'href'  
function showViaLink(array)  
{  
    array.each(function(i)  
    {     
        $(this).click(function()  
        {  
            var target = $(this).attr("href");  
            $(".container").css("display","none");  
            $(target).slideDown("slow");  
        });  
    });  
}  
而對鍵盤按鍵的監聽是用的keypress()方法,其實也沒什么難度,不過我們很少在頁面上使用按鍵監聽,這個例子比較新奇,值得我們參考,如有必要時,可以在項目里用用。
復制代碼 代碼如下:
$(document).keypress(function(e)  
    {  
        switch(e.which)  
        {  
            // user presses the "a"  
            case 97:    showViaKeypress("#home");  
                        break;    
            // user presses the "s" key  
            case 115:   showViaKeypress("#about");  
                        break;  
            // user presses the "d" key  
            case 100:   showViaKeypress("#contact");  
                        break;  
            // user presses the "f" key  
            case 102:   showViaKeypress("#awards");  
                        break;  
            // user presses the "g" key   
            case 103:   showViaKeypress("#links");  
        }  
    });
新聞熱點
疑難解答
圖片精選