數(shù)據(jù)驅(qū)動(dòng)、堅(jiān)持為客戶提供有價(jià)值的服務(wù)和內(nèi)容
微信小程序獲取菜單按鈕(右上角膠囊按鈕)的布局位置信息,可以使用Object wx.getMenuButtonBoundingClientRect()接口,坐標(biāo)信息以屏幕左上角為原點(diǎn)。
示例代碼:
const res = wx.getMenuButtonBoundingClientRect()
console.log(res.width)
console.log(res.height)
consol