capture-screen.md 649 字节
Newer Older
M
mehaotian 已提交
1 2 3 4 5 6
### uni.onUserCaptureScreen(CALLBACK)

监听用户主动截屏事件,用户使用系统截屏按键截屏时触发此事件。
 
**平台差异说明**

DCloud_JSON's avatar
DCloud_JSON 已提交
7 8 9
|App|H5|微信小程序|支付宝小程序|百度小程序|字节跳动小程序|QQ小程序|快手小程序|
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
|x|x|√|√|√|√|√|√|
M
mehaotian 已提交
10

11 12
注:App没有内置截屏相关功能,可以在插件市场搜索相关插件,[详见](https://ext.dcloud.net.cn/search?q=%E6%88%AA%E5%B1%8F)

M
mehaotian 已提交
13 14 15 16 17 18 19 20 21 22
**CALLBACK返回参数:**



**代码示例**

```javascript
uni.onUserCaptureScreen(function() {
    console.log('用户截屏了')
});
W
wanganxp 已提交
23
```