HTML5 Video Player Progress Bar Update

15,717

your code is working change

 bar.addEventListener('click', **clickedbar**, false);
 bar.addEventListener('click', clickedBar, false);

http://jsfiddle.net/wqr7S/4/

Share:
15,717
Luke-T
Author by

Luke-T

Updated on June 08, 2022

Comments

  • Luke-T
    Luke-T almost 2 years

    I've been following thenewboston's HTML5 video tutorial and have reached the tutorials where we make the video player. I've copied the code exactly but the progress bar doesn't update when it is clicked.

    My JSFiddle

    I think the reason this isn't working is because of something wrong with:

    function clickedBar(e){
        if(!myMovie.paused && !myMovie.ended){
            var mouseX=e.offsetX;
            var newtime=mouseX*myMovie.duration/barSize;
            myMovie.currentTime=newtime;
            progressBar.style.width=mouseX+'px';
        }
    }
    

    I really can't figure out why it's not working but any help will be appreciated!

    EDIT: Fixed Link.

  • Luke-T
    Luke-T almost 10 years
    Haha! what a simple mistake :P Thanks a lot!