收藏
回答

小程序中广告组件怎么调整宽度?

框架类型 问题类型 API/组件名称 终端类型 操作系统 微信版本 基础库版本
小程序 Bug AD 微信iOS客户端 6.7.0 2.2.0

在ad组件加style或者在wxss中修改都没有效果。

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

2 个回答

  • 🍀来日可期。
    🍀来日可期。
    2018-07-18

    let { screenWidth } = wx.getSystemInfoSync();
    ad = wx.createBannerAd({
      adUnitId:
    'xxxxxxxxx',
      style: {
         left: 0,
         top: 0,
         width: 0,
         height: 0
      }
    });

    ad.onResize(() => {
      ad.style.width = screenWidth * 0.6;
      ad.style.left = (screenWidth - ad.style.realWidth) / 2;
      ad.style.top = screenHeight - ad.style.realHeight;
    });


    你把这段代码替换到你的代码中去试试

    2018-07-18
    有用 1
    回复
  • 疯狂的小辣椒
    疯狂的小辣椒
    2018-07-17

    麻烦给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题

    2018-07-17
    有用
    回复
登录 后发表内容