4.65 后置广告

 

 

 

后置广告:
如果开启了后置广告,在视频播放结束,即会显示;
支持swf,jpg,gif,png文件格式,均可以添加广告链接地址
后置广告在使用方面与其它几种广告稍有不同,由于视频结束时,有多种动作,所以先必须选择开启使用“后置广告”这种动作。

 

参数名称 数据类型 参数描述 备注
后置广告 功能相关的参数
ShowJcScpAEnd String 是否显示后置广告 yes/no
JcScpAEndPath String 后置Flash广告地址 支持 swf/jpg/png/gif 格式
JcScpAEndW Number 后置Flash广告宽度  
JcScpAEndH Number 后置Flash广告高度  
JcScpAEndLink String 后置Flash广告链接  


关于随机广告提示说明:
本播放器支持设定一组广告链接,每次随机显示其中一个广告。参数传值写法很简单,就是以"|"分隔即可,swf广告、jpg广告、gif广告、png广告都可以。例:

images/a300x250_01.swf|images/a300x250_02.swf|images/a300x250_01.jpg

[ HTML参数代码 ]调用参考:

so.addVariable("JcScpAEndPath","images/a300x250_01.swf|images/a300x250_01.jpg"); //随机广告地址
so.addVariable("JcScpAEndLink","http://www.baidu.com|http://www.sina.com.cn");//广告链接地址

[ 配置文件代码 ]调用参考:

JcScpAEndPath = "images/a300x250_01.swf|images/a300x250_01.jpg"
JcScpAEndLink = "http://www.baidu.com|http://www.sina.com.cn"

........

 

例(4.6.5)-1:调用方式一 ( 使用[ html代码参数 ]中的参数值,注意红色加粗部分 )

<!--极酷播放器/代码开始-->
<script type="text/javascript" src="/player/images/swfobject.js"></script>
<div class="video" id="CuPlayer"><b><img src="/player/images/loading.gif" /> 网页视频播放器加载中,请稍后...</b></div>
<script type="text/javascript">
var so = new SWFObject("/player/player.swf","ply","600","410","9","#000000");
so.addParam("allowfullscreen","true");
so.addParam("allowscriptaccess","always");
so.addParam("wmode","opaque");
so.addParam("quality","high");
so.addParam("salign","lt");
//播放器配置文件-----------------------------
so.addVariable("JcScpFile","/player/CuSunV4set.xml"); //配置文件地址 
//视频文件及略缩图--------------------------
//so.addVariable("JcScpServer","rtmp://www.yoursite.com/vod"); //流媒体服务器地址 
so.addVariable("JcScpVideoPath","http://demo.cuplayer.com/file/test.mp4"); //视频地址
so.addVariable("JcScpVideoPathHD","http://demo.cuplayer.com/file/test.mp4"); //高清视频地址
so.addVariable("JcScpImg","/player/images/startpic.jpg"); //视频图片
so.addVariable("JcScpAutoPlay","yes"); //是否自动播放
so.addVariable("JcScpStarTime","0"); //起始时间点(暂未启用)
so.addVariable("JcScpEndTime","0"); //结束时间点
so.addVariable("JcScpCuePointInfo","开始点|考题开始|结束点"); //提示点信息
so.addVariable("JcScpCuePointTime","50|110|150"); //提示点秒数值
//-前置Flash广告-----------------------------
so.addVariable("ShowJcScpAFront","yes"); //是否显示前置广告
so.addVariable("JcScpCountDownsPosition","top-left"); //倒计时位置
so.addVariable("JcScpCountDowns","5"); //广告倒计时位置
so.addVariable("JcScpAFrontW","600"); //前置广告宽度
so.addVariable("JcScpAFrontH","410"); //前置广告宽度
so.addVariable("JcScpAFrontPath","/player/images/a650x418.swf"); //前置广告地址
so.addVariable("JcScpAFrontLink","http://demo.cuplayer.com/CuSunPlayer/demo1.html"); //前置广告链接
//-视频广告参数-----------------------------
so.addVariable("ShowJcScpAVideo","no"); //是否显示前置视频广告
//so.addVariable("JcScpAVideoServer","rtmp://www.yoursite.com/vod"); //前置视频广告服务器
so.addVariable("JcScpAVideoPath","http://demo.cuplayer.com/file/ad1.mp4"); //前置视频广告地址
so.addVariable("JcScpAVideoLink","http://demo.cuplayer.com/CuSunPlayer/demo2.html"); //前置视频广告链接
//-暂停广告参数-----------------------------
so.addVariable("ShowJcScpAPause","yes"); //是否显示暂停广告
so.addVariable("JcScpAPauseW","300"); //暂停广告地址
so.addVariable("JcScpAPauseH","250"); //暂停广告高度
so.addVariable("JcScpAPausePath","/player/images/a300x250.swf"); //暂停广告地址
so.addVariable("JcScpAPauseLink","http://demo.cuplayer.com/CuSunPlayer/demo3.html"); //暂停广告链接
//-角标广告参数-----------------------------
so.addVariable("ShowJcScpACorner","yes"); //是否显示角标广告
so.addVariable("JcScpACornerW","85"); //角标广告宽度
so.addVariable("JcScpACornerH","50"); //角标广告高度
so.addVariable("JcScpACornerPath","/player/images/a370x250.swf"); //角标广告地址
so.addVariable("JcScpACornerPosition","bottom-right"); //角标广告位置
so.addVariable("JcScpACornerLink","http://demo.cuplayer.com/CuSunPlayer/demo4.html"); //角标广告链接
//-后置广告参数-----------------------------
so.addVariable("ShowJcScpAEnd","yes"); //是否显示后置广告 此处yes表示开启 ,no表示关闭后置广告
so.addVariable("JcScpAEndW","400"); //后置广告宽度
so.addVariable("JcScpAEndH","300"); //后置广告高度
so.addVariable("JcScpAEndPath","/player/images/a400x300.swf"); //后置广告地址
so.addVariable("JcScpAEndLink","http://demo.cuplayer.com/CuSunPlayer/demo5.html"); //后置广告链接
//-滚动文字广告参数-----------------------------
so.addVariable("ShowJcScpAMoveText","yes"); //是否开启滚动文字广告
//-----------------------------------------
so.addVariable("JcScpSharetitle","标题信息"); //视频标题信息
so.write("CuPlayer");
</script>
<!--极酷播放器/代码结束-->

 

例(4.6.5)-2:调用方式二 ( 使用[ 配置文件参数 ] 中的参数值 )

//配置文件参数

......
<Flashvars_Set
JcScpServer =""
JcScpVideoPath = "http://mv.top100.cn/special_26851/Everytime.flv"
JcScpVideoPathHD = "http://mv.top100.cn/special_26851/Everytime.flv"
JcScpImg ="Images/flashChangfa2.jpg"
......
ShowJcScpAEnd = "yes" 此处yes表示开启后置广告 ,no表示关闭后置广告
JcScpAEndPath = "images/a300x250_01.swf|images/a300x250_01.jpg"
JcScpAEndW = "400"
JcScpAEndH = "200"
JcScpAEndLink = "http://www.baidu.com|http://www.sina.com.cn"
......

 


我要下载 获取使用帮助