Keypress - 捕獲鍵盤輸入的JavaScript庫

lhb25發表於2013-10-12

  Keypress 是一個強大的 JavaScript 庫,用於捕獲鍵盤輸入。這是一個有非常特殊的功能的輸入捕獲庫,它是很容易掌握和使用,並且不依賴第三方庫。在網站開發中,經常會碰到需要處理鍵盤輸入的場景,處理起來繁瑣。現在有了這個鍵盤輸入處理的庫就很方便了。

  使用示例:

keypress.combo("shift s", function() {
    console.log("You pressed shift and s");
});

// There are also a few other shortcut methods:

// If we want to register a counting combo
keypress.counting_combo("tab space", function(e, count) {
    console.log("You've pressed this " + count + " times.");
});

// If you want to register a sequence combo
keypress.sequence_combo("up up down down left right left right b a enter", function() {
    lives = 30;
}, true);

  立即下載    效果演示

相關文章