// 广告条 var { windowWidth, windowHeight, pixelRatio } = wx.getSystemInfoSync(); var height = windowHeight * 0.102; let bannerAd = wx.createBannerAd({ adUnitId: 'adunit-c0ee23e59d3ce0ae' , style: { left: 0, top: windowHeight - height, // width: windowWidth, height: height, } }) bannerAd.show(); bannerAd.onResize(res => { bannerAd.style.left = (windowWidth - bannerAd.style.realWidth) * 0.5; }) |
这高度不行吗??我要怎么改啊。
广告条是可以获取高度的
怎么获取ad的高度