2024 年 11 月
 123
45678910
11121314151617
18192021222324
252627282930  

近期发布

近期评论

    2024 年 11 月 28 日

    Neusofts

    科技改变生活,创新引领未来

    Keymaster.js

    Keymaster 是一个简单的(100行代码)的 JavaScript 库用来实现键盘快捷方式的绑定处理,无需依赖其他第三方 JS 库。

    示例代码:

    // define short of 'a'
    key('a', function(){ alert('you pressed a!') });
    
    // returning false stops the event and prevents default browser events
    key('ctrl+r', function(){ alert('stopped reload!'); return false });
    
    // multiple shortcuts that do the same thing
    key('⌘+r, ctrl+r', function(){ });
    

    文档:https://github.com/madrobby/keymaster