心好累,实在想不明白,感觉这banner好坑啊。
let bannerAd = this.wx.createBannerAd(
{
adUnitId: bannerAdKey,
style: {
left: 0,
width:700,
height:80,
top:self._systemInfo.screenHeight - 80,
}
})
bannerAd.onResize(res =>
{
bannerAd.style.left = (self._systemInfo.screenWidth - bannerAd.style.realWidth) * 0.5;
bannerAd.style.top = self._systemInfo.screenHeight - self._bannerAd.style.realHeight;
})
这是一个横屏游戏,底部居中banner
上面代码,在开发者工具都是居中贴底的,但真机上80%的概率是不贴的。
但是 ,如果 把 width = self._systemInfo.screenWidth,那么就算真机也能贴底了;但在横版游戏是不可能这么设置的。
感谢
您好,这是一个已知问题,我们会在后续版本中进行改善,感谢反馈。