基本信息
源码名称:Flowplayer简单酷炫的视频播放器
源码大小:2.80M
文件格式:.zip
开发语言:js
更新时间:2019-04-07
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
下载后 放到任意web环境 即可查看

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head> 
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
        <title>基于Flowplayer打造一款免费的WEB视频播放器</title>
        <meta name="keywords" content="Flowplayer,视频播放器" />
        <meta name="description" content="Flowplayer是一款免费的WEB视频播放器。它支持播放flv、swf等流媒体和图片文件,能够非常流畅的播放视频文件,支持自定义配置和扩展。" />
        <link rel="stylesheet" type="text/css" href="css/common.css" />
        <style type="text/css">
            .demo{width:520px; margin:20px auto}
        </style>
    </head>
    <body>
        <div class="container" id="main">
            <h2 class="title">Flowplayer简单酷炫的视频播放器</h2>
            <div class="demo" id="demo1">
                <a href="demo.flv" style="display:block;width:520px;height:330px" id="player"></a> 
            </div>

            <div class="demo" id="player2" style="width:520px; height:330px"></div>
        </div>
      
        <script type="text/javascript" src="http://demo.jb51.net/jslib/jquery/jquery-1.8.3.min.js"></script>
        <script type="text/javascript" src="flowplayer.js"></script> 
        <script type="text/javascript">
            flowplayer("player", "flowplayer.swf");
            flowplayer("player2",
                    "flowplayer.swf", {
                        clip: {
                            url: "demo.flv", //视频文件地址
                            autoPlay: false, //是否自动播放
                            autoBuffering: true //是否自动缓冲,即当视频文件设置为不自动播放时,播放器仍然预先下载视频文件内容
                        }
                    }
            );
        </script>
    </body>
</html>