1.0.0 • Published 5 years ago

@ctsy/hotkey v1.0.0

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

封装hotkeys-js为我所用

import hotkey from 'castle-hotkey'
//添加监听
hotkey.listen('ctrl+a','用户全选',(event,handler)=>{
    //<!-- do what you want -->
})
//移除监听
hotkey.unlisten('ctrl+a','用户全选')
//移除所有
hotkey.removeAll()
//添加键盘事件到禁用列表中
hotkey.deny('f5')
//移除禁用列表
hotkey.removeDeny('f5')