码迷,mamicode.com
首页 > 其他好文 > 详细

vcastr2.0插件超级简单使用

时间:2014-08-12 16:38:04      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   java   使用   os   strong   文件   

            Vcastr2.0简单使用

友情提示:1、蓝色文字为必修改内容。2、#字符后面是解释该代码段的主要内容

 

 

1、 引用swfobject.js文件

#public/videoplug/swfobject.js  vcastr2.0插件的文件位置

<script type="text/javascript" src="public/videoplug/swfobject.js"></script>

 

2、 创建页面并编写HTML

#player  该id是必填的,但是可以自定义。

<div style="float:left" id="Player" > <strong>我爱播放器(52player.com)</strong> </div>

 

3、 编写JS脚本

#public/videoplug/vcastr2.swf  flv播放器文件的文件位置

#public/uploads/videos/2.flv  flv视频文件的文件位置

#Player  与之前的第一步创建的div的id相对应,必须要对应

<script>

    var so = new SWFObject("public/videoplug/vcastr2.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("vcastr_file","public/uploads/videos/2.flv");

    so.write("Player");

</script>

 

vcastr2.0插件超级简单使用,布布扣,bubuko.com

vcastr2.0插件超级简单使用

标签:style   blog   color   java   使用   os   strong   文件   

原文地址:http://www.cnblogs.com/sustudy/p/3907313.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!