欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

基于Jquery實現(xiàn)鍵盤按鍵監(jiān)聽

 更新時間:2014年05月11日 11:25:11   作者:  
本文介紹下,用jquery實現(xiàn)的滑動效果,以及對鍵盤按鍵進行監(jiān)聽的例子,有需要的朋友,可以參考學習下

從NETTUTS看到的文章,效果很不錯,有點類似于Flash做出來的效果,demo在這里 ,原文 對實現(xiàn)步驟講得很清楚,我就不多提了,實現(xiàn)效果的邏輯比較簡單,也就是slideDown()方法,

jquery slideDown()方法,實現(xiàn)滑動效果。

復制代碼 代碼如下:

// 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"); 
        }); 
    }); 

而對鍵盤按鍵的監(jiān)聽是用的keypress()方法,其實也沒什么難度,不過我們很少在頁面上使用按鍵監(jiān)聽,這個例子比較新奇,值得我們參考,如有必要時,可以在項目里用用。

復制代碼 代碼如下:

$(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"); 
        } 
    });

相關文章

最新評論