找回密码
 立即注册
搜索
热搜: 微信小游戏
查看: 167|回复: 0

微信小游戏实现将banner广告固定在底部

[复制链接]

84

主题

75

回帖

655

积分

管理员

积分
655
管理员 发表于 2024-7-14 14:45:51 | 显示全部楼层 |阅读模式

在Cocos Creator中创建bannerAd
wx.createBannerAd

if (sys.platform == sys.Platform.WECHAT_GAME) {
    let ad = wx.createBannerAd({
        adUnitId: 'xxxxx',
        adIntervals: 300,
        style: {
            left: 0,
            top: 0,
            height: 0,
            width: wx.getSystemInfoSync().windowWidth
        }
    })
    ad.onResize((size) => {
        ad.style.top = wx.getSystemInfoSync().windowHeight - size.height + 1
    })
    ad.onError((err) => {
        console.log(err)
    })
    ad.show()
}
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|小黑屋|微信搜索指数|独开 ( 粤ICP备2023140300号-3 )

GMT+8, 2024-9-8 09:46 , Processed in 0.027837 second(s), 19 queries .

快速回复 返回顶部 返回列表