收藏
回答

小程序广告组件驳回原因:1. 广告组件缩放范围超过标准

框架类型 问题类型 提审时间 AppID
小游戏 Bug 2018-12-17 wxd5e01b39be751851
// 广告条
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;
})

这高度不行吗??我要怎么改啊。

回答关注问题邀请回答
收藏

1 个回答

  • 2019-01-14

    广告条是可以获取高度的

    2019-01-14
    有用
    回复 1
    • 木头
      木头
      2019-05-22

      怎么获取ad的高度


      2019-05-22
      回复
登录 后发表内容