让你干货保姆快速功能广告(广告函数事件值为参数)「广告js」

今天,小编要教给大家的是,如何快速在APP中集成广告功能
首先,进入中控易动平台(www.yd-mobile.cn),创建一个应用,创建完成进入应用,然后添加AdView插件
AdView插件:集成AdView展示广告功能,支持开屏、横幅、插屏、原生、视频等广告样式注意:·插件的所有接口在 deviceready 事件后生效;使用插件需配置:SDKKEY(参考AdView插件配置);·展示开屏、横幅、插屏、原生、视频等广告样式需要在AdView平台申请广告位(参考AdView插件配置;·开屏广告默认展示;·视频广告暂时只支持激励视频样式;·当前iOS使用AdViewSDK_iOS版本是4.0.6;·当前Android使用AdViewSDK_Android版本是4.0.9;·广告接口调用限制30s一次;1展示横幅广告navigator.adview.showBannerAd(success, error,options)支持平台:·Android·iOS参数说明参数类型必填说明successFunction是成功回调函数errorFunction是失败回调函数optionsObject否参数对象success函数没有返回,直接加载广告error函数会返回一个字符串,错误的相关信息options参数为一个对象,其属性包含以下一项或多项:type(String/ 可选) --广告位置,可取值:top(顶部)、center(居中)、bottom(底部);默认值:top;(注意:以下 x、y在type基础上进行位置调整
例如:x取值30,type取值top,是在type是top的基础上向下平移30距离)x(Number/ 可选) -- 距离顶部的偏移量,基于type的值,默认值:0(请输入大于等于0的数),单位pxy(Number/ 可选) -- 距离底部的偏移量,基于type的值,默认值:0(请输入大于等于0的数),单位px·注意关于type、x、y组合方式五种,选择其中一种传参:1.type;2.type值为top和x;3.type值为center和x;4.type值为center和y;5.type值为bottom和y;关于type在值为top时,iOS位于状态栏下方;若x和y都有值且都大于0,则取x值,y值为0
示例代码设置广告居上显示// 监听’deviceready‘事件document.addEventListener('deviceready', onDeviceReady, false)function onDeviceReady(){ //设置广告居上显示 navigator.adview.showBannerAd( function (success){ console.log(JSON.stringify(success)); },function (error){ alert(JSON.stringify(error)); });}设置广告居上向下偏移30显示// 监听’deviceready‘事件document.addEventListener('deviceready', onDeviceReady, false)function onDeviceReady(){ //设置广告居上向下偏移30显示 navigator.adview.showBannerAd( function(success) { console.log(JSON.stringify(success)); },function (error){ alert(JSON.stringify(error)); },{'x':30,'type':'top'});}设置广告居中显示// 监听’deviceready‘事件document.addEventListener('deviceready', onDeviceReady, false)function onDeviceReady(){ //设置广告居中显示 navigator.adview.showBannerAd( function (success){ console.log(JSON.stringify(success)); },function (error){ alert(JSON.stringify(error)); },{'type':'center'});}设置广告居中向下偏移30显示// 监听’deviceready‘事件document.addEventListener('deviceready', onDeviceReady, false)function onDeviceReady(){ //设置广告居中向下偏移30显示 navigator.adview.showBannerAd( function (success){ console.log(JSON.stringify(success)); },function (error){ alert(JSON.stringify(error)); },{'x':30,'type':'center'});}设置广告居中向上偏移30显示// 监听’deviceready‘事件document.addEventListener('deviceready', onDeviceReady, false)function onDeviceReady(){ //设置广告居中向上偏移30显示 navigator.adview.showBannerAd( function (success){ console.log(JSON.stringify(success)); },function (error){ alert(JSON.stringify(error)); },{'y':30,'type':'center'});}设置广告居下显示// 监听’deviceready‘事件document.addEventListener('deviceready', onDeviceReady, false)function onDeviceReady(){ //设置广告居下显示 navigator.adview.showBannerAd( function (success){ console.log(JSON.stringify(success)); },function (error){ alert(JSON.stringify(error)); },{'type':'bottom'});}设置广告居下向上偏移30显示// 监听’deviceready‘事件document.addEventListener('deviceready', onDeviceReady, false)function onDeviceReady(){ //设置广告居下向上偏移30显示 navigator.adview.showBannerAd( function (success){ console.log(JSON.stringify(success)); },function (error){ alert(JSON.stringify(error)); },{'y':30,'type':'bottom'});}2展示插屏广告navigator.adview.showInterteristalAd(success, error)支持平台:·Android·iOS参数说明参数类型必填说明successFunction是成功回调函数errorFunction是失败回调函数success函数没有返回,直接加载广告error函数会返回一个字符串,错误的相关信息示例代码// 监听’deviceready‘事件document.addEventListener('deviceready', onDeviceReady, false)function onDeviceReady(){ navigator.adview.showInterteristalAd(function(success) { console.log(JSON.stringify(success)); },function (error){ alert(JSON.stringify(error)); });}3展示原生广告navigator.adview.showNativeAd(success, error,options)支持平台:·Android·iOS参数说明参数类型必填说明successFunction是成功回调函数errorFunction是失败回调函数optionsObject是参数对象success函数没有返回,直接加载广告error函数会返回一个字符串,错误的相关信息options参数为一个对象,其属性包含以下一项或多项:positionID(String/ 必选) -- 原生广告位ID,在adview官网开发者后台申请type(可选) --(String/ 可选) --广告位置,可取值:top(顶部)、center(居中)、bottom(底部);默认值:top;(注意:以下 x、y在type基础上进行位置调整
例如:x取值30,type取值top,是在type是top的基础上向下平移30距离)x(Number/ 可选) -- 距离顶部的偏移量,基于type;默认值:0(请输入大于等于0的数),单位pxy(Number/ 可选) -- 距离底部的偏移量,基于type;默认值:0(请输入大于等于0的数),单位px· 注意关于type、x、y组合方式五种,选择其中一种传参:1.type;2.type值为top和x;3.type值为center和x;4.type值为center和y;5.type值为bottom和y;关于type在值为top时,iOS位于状态栏下方;若x和y都有值且都大于0,则取x值,y值为0
示例代码设置广告居上显示// 监听’deviceready‘事件document.addEventListener('deviceready', onDeviceReady, false)function onDeviceReady(){ //设置广告居上显示 navigator.adview.showNativeAd( function (success){ console.log(JSON.stringify(success)); },function (error){ alert(JSON.stringify(error)); },{'positionID':'POSIDs38o5ybf6agj'});}设置广告居上向下偏移30显示// 监听’deviceready‘事件document.addEventListener('deviceready', onDeviceReady, false)function onDeviceReady(){ //设置广告居上向下偏移30显示 navigator.adview.showNativeAd( function(success) { console.log(JSON.stringify(success)); },function (error){ alert(JSON.stringify(error)); },{'positionID':'POSIDs38o5ybf6agj','x':30,'type':'top'});}设置广告居中显示// 监听’deviceready‘事件document.addEventListener('deviceready', onDeviceReady, false)function onDeviceReady(){ //设置广告居中显示 navigator.adview.showNativeAd( function (success){ console.log(JSON.stringify(success)); },function (error){ alert(JSON.stringify(error)); },{'positionID':'POSIDs38o5ybf6agj','type':'center'});}设置广告居中向下偏移30显示// 监听’deviceready‘事件document.addEventListener('deviceready', onDeviceReady, false)function onDeviceReady(){ //设置广告居中向下偏移30显示 navigator.adview.showNativeAd( function (success){ console.log(JSON.stringify(success)); },function (error){ alert(JSON.stringify(error)); },{'positionID':'POSIDs38o5ybf6agj','x':30,'type':'center'});}设置广告居中向上偏移30显示// 监听’deviceready‘事件document.addEventListener('deviceready', onDeviceReady, false)function onDeviceReady(){ //设置广告居中向上偏移30显示 navigator.adview.showNativeAd( function (success){ console.log(JSON.stringify(success)); },function (error){ alert(JSON.stringify(error)); },{'positionID':'POSIDs38o5ybf6agj','y':30,'type':'center'});}设置广告居下显示// 监听’deviceready‘事件document.addEventListener('deviceready', onDeviceReady, false)function onDeviceReady(){ //设置广告居下显示 navigator.adview.showNativeAd( function (success){ console.log(JSON.stringify(success)); },function (error){ alert(JSON.stringify(error)); },{'positionID':'POSIDs38o5ybf6agj','type':'bottom'});}设置广告居下向上偏移30显示// 监听’deviceready‘事件document.addEventListener('deviceready', onDeviceReady, false)function onDeviceReady(){ //设置广告居下向上偏移30显示 navigator.adview.showNativeAd( function (success){ console.log(JSON.stringify(success)); },function (error){ alert(JSON.stringify(error)); },{'positionID':'POSIDs38o5ybf6agj','y':30,'type':'bottom'});}4展示视频广告navigator.adview.showVideoAd(success, error,options)支持平台:·Android·iOS参数说明参数类型必填说明successFunction是成功回调函数errorFunction是失败回调函数optionsObject是参数对象success函数没有返回,直接加载广告error函数会返回一个字符串,错误的相关信息options参数为一个对象,其属性包含以下一项或多项:positionID(String/ 必选) -- 视频广告位ID,在adview官网开发者后台申请示例代码// 监听’deviceready‘事件document.addEventListener('deviceready', onDeviceReady, false)function onDeviceReady(){ navigator.adview.showVideoAd(function (success) { console.log(JSON.stringify(success)); },function (error){ alert(JSON.stringify(error)); },{'positionID':'POSID74pjtjpxo516'});}以上就是使用AdView插件的全部教程了,快去试试吧
让你干货保姆快速功能广告(广告函数事件值为参数)
(图片来源网络,侵删)

联系我们

在线咨询:点击这里给我发消息