网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 html5 自定义播放器核心代码
内容
    HTML5提供有新的video标签,可以不用编程直接播放video,只需要写几行简单的代码, 就可以自定义播放器
    网页html
    代码如下:
    <body>
    <section id="skin">
    <video id="myMovie" width="640" height="360">
    <source src="videos/Introduction.mp4">
    </video>
    <nav>
    <div id="buttons">
    <button type="button" id="playButton">Play</button>
    </div>
    <div id="defaultBar">
    <div id="progressBar"></div>
    </div>
    <div></div>
    </nav>
    </section>
    </body>
    css样式
    代码如下:
    body{
    text-align:center;
    }
    header,section,footer,aside,nav,article,hgroup{
    display:block;
    }
    #skin{
    width:700px;
    margin:10px auto;
    padding:5px;
    background:red;
    border:4px solid black;
    border-radius:20px;
    }
    nav{
    margin:5px 0px;
    }
    #buttons{
    float:left;
    width:70px;
    height:22px;
    }
    #defaultBar{
    position:relative;
    float:left;
    width:600px;
    height:14px;
    padding:4px;
    border:1px solid black;
    background:yellow;
    }
    /*progressBar在defaultBar内部*/
    #progressBar{
    position:absolute;
    width:0px; /*使用javascript控制变化*/
    height:14px; /*和defaultBar高度相同*/
    background:blue;
    }
    javascript代码
    代码如下:
    function doFisrt()
    {
    barSize=600; //注意不要使用px单位,且不要用var,是全局变量
    myMovie=document.getElementById('myMovie');
    playButton=document.getElementById('playButton');
    bar=document.getElementById('defaultBar');
    progressBar=document.getElementById('progressBar');
    playButton.addEventListener('click',playOrPause,false); //第三个参数总是false, Register the event handler for the bubbling phase.
    bar.addEventListener('click',clickedBar,false);
    }
    //控制movie播放和停止
    function playOrPause(){
    if(!myMovie.paused && !myMovie.ended){
    myMovie.pause();
    playButton.innerHTML='Play';
    window.clearInterval(updatedBar);
    }else{
    myMovie.play();
    playButton.innerHTML='pause';
    updatedBar=setInterval(update,500);
    }
    }
    //控制进度条的动态显示
    function update(){
    if(!myMovie.ended){
    var size=parseInt(myMovie.currentTime*barSize/myMovie.duration);
    progressBar.style.width=size+'px';
    }else{
    progressBar.style.width='0px';
    playButton.innerHTML='Play';
    window.clearInterval(updatedBar);
    }
    }
    //鼠标点击进度条控制方法
    function clickedBar(e){
    if(!myMovie.paused && !myMovie.ended){
    var mouseX=e.pageX-bar.offsetLeft;
    var newtime=mouseX*myMovie.duration/barSize; //new starting time
    myMovie.currentTime=newtime;
    progressBar.style.width=mouseX+'px';
    window.clearInterval(updatedBar);
    }
    }
    window.addEventListener('load',doFisrt,false);
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/20 23:50:36