一门APP@APP截屏 发表于 2019-7-24 22:46:33

通过JS来控制APP截屏功能

captureWebPage 截屏网页快照
截屏当前浏览的网页快照,保存到相册。
jsBridge.captureWebPage({
fullPage: false,
share   : true
});

/*
参数说明:
{
fullPage: //是否整页截屏(滚屏截图,长屏),布尔类型
share   : //截屏后是否弹出分享,布尔类型
}
*/

captureWebPage 截屏网页快照(整页截屏,长图)
jsBridge.captureWebPage({
fullPage: true,
share   : true
});

更多技巧,请查看demo链接!
页: [1]
查看完整版本: 通过JS来控制APP截屏功能