2024年 4月
1234567
891011121314
15161718192021
22232425262728
2930  

近期发布

近期评论

    2024 年 4 月 10 日

    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