获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- 在ios 13.4中,微信浏览器使用html2canvas无任何反馈
在ios 13.4系统微信浏览器中, npm html2canvas包有问题 html2canvas(shareContent as HTMLElement, opts).then(canvas => { // 无反馈 }).catch(_ => { // 无反馈 }) 在ios 非13.4系统微信浏览器中 html2canvas(shareContent as HTMLElement, opts).then(canvas => { // 有反馈 }).catch(_ => { // 有反馈 }) 因为有部分用户更新了ios 13.4, 我们定位到是这个问题。 希望ios 13.4微信浏览器中html2canvas正常运行
2020-03-26 - 自定义标题栏高度计算
【getSystemInfo】 获取系统信息 手机端: statusBarHeight:20 screenHeight:667 windowHeight:667 工具端: statusBarHeight:20 screenHeight:667 windowHeight:603 自定义标题栏高度=screenHeight-statusBarHeight-windowHeight 所以在工具端是可以的,但是到手机上等于0了 或者有其他什么方法可以计算自定义标题栏的高度
2018-03-21