web_screencapture
v1.0.2
Published
the screen capture of web
Downloads
1
Readme
screenCapture
网页截图
install
安装很简单,可以用npm 或者浏览器引入screenCapture.js。
npm i web_screencapture
// 或者
npm install web_screencapture -i
use
import ScreenCapture from 'web_screencapture';
let sc = new ScreenCapture({
copyType: 'all'
});
sc.init();
键盘按下
ctrl+b
开始截图;ctrl+m
全屏截图;esc
退出截图
options
初始化构建函数的参数如下:
- copyType: 截图后的行为:all : 弹出弹窗选择;download: 直接下载截图;_blank: 新窗口打开截图
- keyCode: 键盘触发截图的keyCode,默认66(b)
- fkeyCode: 键盘触发全屏截图的keyCode,默认77(m)