Appearance
preventRightKey 函数用于禁用浏览器中通过鼠标右键触发的所有事件,如打开上下文菜单、选择文本、复制等操作。
preventRightKey
void
import { preventRightKey } from 'atom-tools' const prevent = () => { // 可以右键,5s后禁止右键 setTimeout(() => { preventRightKey() }, 5000) }