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

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

W
wanganxp 已提交
7 8 9
|5+App|H5|微信小程序|支付宝小程序|百度小程序|头条小程序|QQ小程序|
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
|x|x|√|√|√|x|√|
M
mehaotian 已提交
10 11 12 13 14 15 16 17 18 19 20

**CALLBACK返回参数:**



**代码示例**

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