微信小程序右上角胶囊的位置
作者:互联网
参考:https://www.cnblogs.com/luoshida/p/13434197.html
右上角胶囊的信息,包含width、height、top等
let rect= wx.getMenuButtonBoundingClientRect();
机型信息
let info=wx.getSystemInfoSync();
胶囊底部到手机最上面的距离
rect.bottom
胶囊三个点到屏幕右边的距离,这个需要赋值给right,即right等于以下
info.screenWidth-rect.right+ rect.width*3/4+5
标签:right,右上角,微信,胶囊,width,let,rect,wx 来源: https://www.cnblogs.com/lude1994/p/15041681.html