- 小程序建议可以获取titleBar高度的需求。
做自定义导航栏用。 需要获取用户机型导航栏高度。 wx.getSystemInfo({ success: (res) => { // let totalTopHeight = (wx.getMenuButtonBoundingClientRect().bottom + wx.getMenuButtonBoundingClientRect().top) - (res.statusBarHeight * 2) // this.globalData.statusBarHeight = res.statusBarHeight // this.globalData.titleBarHeight = totalTopHeight // console.log(wx.getMenuButtonBoundingClientRect()) //真机上top 和 bottom 少2px 开发者工具正常。该方法拿到的高度在iPad上还是无法做到适配。 //该方法不兼容安卓刘海屏。 let totalTopHeight = 68 if (res.model.indexOf('iPhone X') !== -1) { totalTopHeight = 88 } else if (res.model.indexOf('iPhone') !== -1) { totalTopHeight = 64 } this.globalData.statusBarHeight = res.statusBarHeight this.globalData.titleBarHeight = totalTopHeight - res.statusBarHeight console.log(this.globalData.statusBarHeight) console.log(this.globalData.titleBarHeight) }, fail: () => { this.globalData.statusBarHeight = 20 this.globalData.titleBarHeight = 44 } }) 迫切的希望能通过api拿到titleBarHeight:也就是这块区域的高度。用胶囊位置去算 真机上top 和 bottom 少2px; [图片] 代码片段如下:https://developers.weixin.qq.com/s/wi6Pglmv7s8P。
2019-05-15 - wx.getMenuButtonBoundingClientRect()获取问题
wx.getMenuButtonBoundingClientRect()获取高度问题: [图片] 在开发者工具: [图片] 在真机上: [图片] 代码片段如下: https://developers.weixin.qq.com/s/wi6Pglmv7s8P。
2019-05-14 - 开发者工具可以调试伪类元素吗?
如题,啥时候才支持调试呢? [图片]
2019-01-14 - 开发者工具这个问题修复下吧
审查元素都跑出界面外了 [图片] [图片]
2018-12-21 - 附近小程序问题
附近小程序 一点导入门店信息。左边的地址 就重复了的这个问题啥时候改下呗。 [图片]
2018-12-19 - 我来问个问题,😂
我来问个问题,02/11/2018 14:11:25 这种时间一般是表示 2月11号还是 11月2号
2018-12-07 - 这个api,文档里哪里能找到呀
wx.onAppRoute(function(res){ console.log({res}) }) 监听路由变化的,准备写sdk做全链路埋点,这个api后续不会废弃吧。?
2018-12-06 - swiper自适应高度的需求。
看到很久前 就有用户提过希望swiper高度自适应的问题。但是一直没点响应。。。 = =,我就再来问下 啥时候能支持鸭。
2018-12-03 - 微信运动有什么防止用户刷步数的方法吗?
微信运动有什么防止用户刷步数的方法吗?手动@官方人员
2018-11-20 - 新版开发者工具json文件失效问题
导航条颜色和设置 不生效了 电脑端截图是这样的 [图片] 手机截图是这样的 [图片]
2018-11-15