这是一个强健的 Javascript 库用于捕获键盘输入和输入的组合键,它没有依赖,压缩只有(~3kb),gzip:1.9k。官方文档DEMO预览,更多实例.
1 2 3 4 5
| ╭┈┈╮ ╭┈┈╮ ╭┈┈╮ ┆ ├┈┈..┈┈┈┈┈.┆ └┈╮┆ ├┈┈..┈┈┈┈┈..┈┈.┈┈..┈┈┈┈┈. ┆ ┆┆ □ ┆┆ ┈┤┆ < ┆ -__┘┆ ┆ ┆┆__ ┈┈┤ ╰┈┈┴┈┈╯╰┈┈┈┈┈╯╰┈┈┈┈╯╰┈┈┴┈┈╯╰┈┈┈┈┈╯╰┈┈┈ ┆╰┈┈┈┈┈╯ ╰┈┈┈┈┈╯
|
创建
您将需要在您的系统上安装的 Node.js。
1 2 3 4 5 6 7 8
| $ bower install hotkeysjs
$ npm install hotkeys-js
$ npm run build $ npm run watch
|
1 2 3 4 5 6 7
| import hotkeys from 'hotkeys-js';
hotkeys('f5', function(event, handler){ event.preventDefault() alert('you pressed F5!') });
|
或者在您的HTML中手动下载并引入 hotkeys.js,你也可以通过 UNPKG 进行下载:
1 2 3 4 5 6 7 8 9 10 11
| <script src="https://unpkg.com/hotkeys-js/dist/hotkeys.min.js"></script> <script type="text/javascript"> hotkeys('ctrl+a,ctrl+b,r,f', function(event,handler) { switch(handler.key){ case "ctrl+a":alert('you pressed ctrl+a!');break; case "ctrl+b":alert('you pressed ctrl+b!');break; case "r":alert('you pressed r!');break; case "f":alert('you pressed f!');break; } }); </script>
|
React中使用
react-hotkeys,安装如下:
详细使用方法请参考文档 react-hotkeys。
使用
传统调用
1
| <script type="text/javascript" src="./js/hotkeys.js"></script>
|
包加载
1 2 3 4 5 6 7 8
| import hotkeys from 'hotkeys-js';
hotkeys('shift+a,alt+d, w', function(e){ console.log('干点活儿',e); if(hotkeys.shift) console.log('大哥你摁下了 shift 键!'); if(hotkeys.ctrl) console.log('大哥你摁下了 ctrl 键!'); if(hotkeys.alt) console.log('大哥你摁下了 alt 键!'); });
|
支持的键
⇧
, shift
, option
, ⌥
, alt
, ctrl
, control
, command
, ⌘
⌘
Command()
⌃
Control
⌥
Option(alt)
⇧
Shift
⇪
Caps Lock(大写)
fn
功能键就是fn(不支持)
↩︎
return/enter
space
空格键
修饰键判断
可以对下面的修饰键判断 shift
alt
option
ctrl
control
command
,特别注意+
和=
键值相同,组合键设置⌘+=
1 2 3 4 5 6 7 8 9 10
| hotkeys('shift+a,alt+d, w', function(e){ console.log('干点活儿',e); if(hotkeys.shift) console.log('您摁下了 shift 键!'); if(hotkeys.ctrl) console.log('您摁下了 ctrl 键!'); if(hotkeys.alt) console.log('您摁下了 alt 键!'); if(hotkeys.option) console.log('您摁下了 option 键!'); if(hotkeys.control) console.log('您摁下了 control 键!'); if(hotkeys.cmd) console.log('您摁下了 cmd 键!'); if(hotkeys.command) console.log('您摁下了 command 键!'); });
|
定义快捷键
hotkeys([keys:<String>], [option:[string|object|function]], [callback:<function>])
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
| hotkeys('f5', function(event,handler){ event.preventDefault() alert('你按下了 F5 键!') });
hotkeys('ctrl+r, command+r', function(){ alert('停止刷新!'); return false; });
hotkeys('a', function(event,handler){ if(event.target === "input"){ alert('你在输入框中按下了 a!') } alert('你按下了 a!') });
hotkeys('ctrl+a,ctrl+b,r,f', function(event,handler){ switch(handler.key){ case "ctrl+a": alert('你按下了ctrl+a!'); break; case "ctrl+b": alert('你按下了ctrl+b!'); break; case "r": alert('你按下了r!'); break; case "f": alert('你按下了f!'); break; } });
hotkeys('⌘+r, ctrl+r', function(){ });
hotkeys('*','wcj', function(e){ console.log('干点活儿',e); console.log("key.getScope()::",hotkeys.getScope()); if(hotkeys.shift) console.log('大哥你摁下了 shift 键!'); if(hotkeys.ctrl) console.log('大哥你摁下了 ctrl 键!'); if(hotkeys.alt) console.log('大哥你摁下了 alt 键!'); });
hotkeys('ctrl-y, ctrl-a', {splitKey: '-'}, function(e){ console.log('you press bind keys') })
|
option
scope<String>
element<HTMLElement>
keyup<Boolean>
keydown<Boolean>
1 2 3 4 5 6
| hotkeys('o, enter', { scope: 'wcj', element: document.getElementById('warpper'), }, function(){ console.log('do something else'); });
|
切换快捷键
如果在单页面在不同的区域,相同的快捷键,干不同的事儿,之间来回切换。O(∩_∩)O !
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| hotkeys('ctrl+o, ctrl+alt+enter', 'scope1', function(){ console.log('你好看'); });
hotkeys('ctrl+o, enter', 'scope2', function(){ console.log('你好丑陋啊!'); });
hotkeys.setScope('scope1');
|
标记快捷键范围
删除 区域范围标记
1
| hotkeys.deleteScope('scope1');
|
获取 区域范围标记
设置 区域范围标记
1
| hotkeys.setScope('scope1');
|
解除绑定
hotkeys.unbind()
解除绑定的所有快捷键
hotkeys.unbind("ctrl+o, ctrl+alt+enter")
解除绑定两组快捷键
hotkeys.unbind("ctrl+o","files")
解除绑定名字叫files钟的一组快捷键
1 2 3 4 5 6 7
| hotkeys.unbind('a');
hotkeys.unbind('o, enter', 'issues'); hotkeys.unbind('o, enter', 'files');
|
通过函数来解除绑定
1 2 3 4 5 6
| function example(){} hotkeys('a', example); hotkeys.unbind('a', example);
hotkeys('a', 'issues', example); hotkeys.unbind('a', 'issues', example);
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| 可以通过传入对象解除绑定的快捷键 hotkeys.unbind({ key: 'ctrl-e,ctrl-u', scope: 'issues', spitKey: '-' }) 传入数组可同时解除多个scope下绑定的快捷键 hotkeys.unbind([ { key: 'a, ctrl+r', scope: 'issues', }, { key: '+, ctrl-y', scope: 'test', splitKey: '-' } ])
|
键判断
判断摁下的键是否为某个键
1 2 3 4 5
| hotkeys('a', function(){ console.log(hotkeys.isPressed("a")); console.log(hotkeys.isPressed("A")); console.log(hotkeys.isPressed(65)); });
|
获取摁下键值
获取摁下绑定键的键值 hotkeys.getPressedKeyCodes()
1 2 3
| hotkeys('command+ctrl+shift+a,f', function(){ console.log(hotkeys.getPressedKeyCodes()); })
|
keyup
key down 和 key up 将都执行回调事件。
1 2 3 4 5 6 7 8
| hotkeys('ctrl+a,alt+a+s', { keyup: true }, (evn, handler) => { if(evn.type === 'keydown') { console.log('keydown:', evn.type, handler, handler.key); } if(evn.type === 'keyup') { console.log('keyup:', evn.type, handler, handler.key); } });
|
过滤
INPUT
SELECT
TEXTAREA
默认不处理。
hotkeys.filter
返回 true
快捷键设置才会起作用,false
快捷键设置失效。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| hotkeys.filter = function(event){ return true; }
hotkeys.filter = function(event) { var tagName = (event.target || event.srcElement).tagName; return !(tagName.isContentEditable || tagName == 'INPUT' || tagName == 'SELECT' || tagName == 'TEXTAREA'); }
hotkeys.filter = function(event){ var tagName = (event.target || event.srcElement).tagName; hotkeys.setScope(/^(INPUT|TEXTAREA|SELECT)$/.test(tagName) ? 'input' : 'other'); return true; }
|
兼容模式
1 2 3 4 5 6 7 8 9 10
| var k = hotkeys.noConflict(); k('a', function() { console.log("这里可以干一些事儿") });
hotkeys()
|
开发
安装依赖,运行自重载构建,获取代码:
1 2 3
| $ git https://github.com/jaywcjlove/hotkeys.git $ cd hotkeys $ npm install
|
运行下面命令自动重载构建:
运行稳定环境
如果要贡献,请 fork Hotkeys.js
, 并添加您的测试代码(在 test 目录中),并提交一个 PR。
1 2
| $ npm run test $ npm run test:watch
|
License
MIT © Kenny Wong