提交 73bcd2b8 编写于 作者: d-u-a's avatar d-u-a

ad-grid: 支持微信小程序

上级 43cc2638
...@@ -8,44 +8,20 @@ ...@@ -8,44 +8,20 @@
|App|H5|微信小程序|支付宝小程序|百度小程序|字节跳动小程序、飞书小程序|QQ小程序|快应用|360小程序|快手小程序|京东小程序| |App|H5|微信小程序|支付宝小程序|百度小程序|字节跳动小程序、飞书小程序|QQ小程序|快应用|360小程序|快手小程序|京东小程序|
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:| |:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
|x|x|√|x|x|x|x|x|x|x|x| |x|x|√ 3.5.1+|x|x|x|x|x|x|x|x|
**开通配置广告** **开通配置广告**
开通广告步骤: [开通广告步骤详情](https://uniapp.dcloud.net.cn/uni-ad.html#start)
在各自的小程序管理后台操作。
**属性说明** **属性说明**
|属性名|类型|默认值|说明|平台差异| |属性名|类型|默认值|说明|
|:-|:-|:-|:-|:-| |:-|:-|:-|:-|
|unit-id|String||广告单元id,可在小程序管理后台的流量主模块新建|微信小程序| |adpid|String||uni-AD 广告位id,在[uni-AD官网](https://uniad.dcloud.net.cn/)申请广告位|
|ad-type|String|grid||微信小程序| |@load|EventHandle||广告加载成功的回调|
|@load|EventHandle||广告加载成功的回调|| |@error|EventHandle||广告加载失败的回调,event.detail = {errCode: xxx}|
|@error|EventHandle||广告加载失败的回调||
|@close|EventHandle||广告关闭的回调||
### 广告尺寸设置
Grid 广告不允许直接设置样式属性,默认宽度为100%(width: 100%),高度会自动等比例计算,因此开发者可以设置广告外层组件的宽度调整广告的尺寸。格子广告有最小尺寸限制,5个的形态为331px,8个的形态为294px。
```html
<view class="adContainer">
<ad unit-id="xxxx" ad-type="grid" ad-theme="white" grid-count="5"></ad>
</view>
```
```css
<style>
/* 外层组件的宽度可设置成100%或具体数值 */
.adContainer {
width: 100%;
}
<style>
```
### 广告事件监听 ### 广告事件监听
...@@ -53,9 +29,11 @@ Grid 广告不允许直接设置样式属性,默认宽度为100%(width: 100% ...@@ -53,9 +29,11 @@ Grid 广告不允许直接设置样式属性,默认宽度为100%(width: 100%
Grid 广告在创建后会自动拉取广告。开发者可以通过 ad 组件的 load 和 error 事件监听广告拉取成功或失败,可以通过 close 事件监听广告被关闭。 Grid 广告在创建后会自动拉取广告。开发者可以通过 ad 组件的 load 和 error 事件监听广告拉取成功或失败,可以通过 close 事件监听广告被关闭。
```html ```html
<view class="adContainer"> <template>
<ad unit-id="xxxx" ad-type="grid" ad-theme="white" grid-count="5" @load="adLoad" @error="adError" @close="adClose"></ad> <view class="adContainer">
</view> <ad adpid="xxxx" @load="adLoad" @error="adError"></ad>
</view>
</template>
``` ```
```js ```js
...@@ -71,47 +49,8 @@ Grid 广告在创建后会自动拉取广告。开发者可以通过 ad 组件 ...@@ -71,47 +49,8 @@ Grid 广告在创建后会自动拉取广告。开发者可以通过 ad 组件
}, },
adError(e) { adError(e) {
console.log("adError",e); console.log("adError",e);
},
adClose(e) {
console.log("adClose",e);
} }
} }
} }
</script> </script>
``` ```
### 广告主题样式设置
广告组件提供黑、白两种主题样式,开发者可以在创建广告时传入ad-theme参数实现主题样式选择,ad-theme参数为字符串类型,参数值可选white, black
```html
<view class="adContainer">
<ad unit-id="xxxx" ad-type="grid" ad-theme="white"></ad>
</view>
```
```html
<view class="adContainer">
<ad unit-id="xxxx" ad-type="grid" ad-theme="black"></ad>
</view>
```
### 广告格子个数设置
广告组件提供黑、白两种主题样式,开发者可以在创建广告时传入grid-count参数实现主题样式选择,grid-count参数为数字类型,参数值可选5, 8
```html
<view class="adContainer">
<ad unit-id="xxxx" ad-type="grid" grid-count="5"></ad>
</view>
```
```html
<view class="adContainer">
<ad unit-id="xxxx" ad-type="grid" grid-count="8"></ad>
</view>
```
注意:微信已下线 Grid 广告,请使用自定义模板广告替代
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册