As to the progress bar videojs player to make draggable slider? -


as progress bar videojs player make draggable slider? here http://take.ms/2m2cw

var down = false;      me.controlbar.progresscontrol.on('mousedown', function() { down = true; });      me.controlbar.progresscontrol.on('mouseup', function() { down = false;  });      me.controlbar.progresscontrol.on('mousemove', function(e) {         if(down) {             console.log(this.seekbar.update());         }     }); 

Comments

Popular posts from this blog

Fail to load namespace Spring Security http://www.springframework.org/security/tags -

c++ - Using Gtest how return different values in ON_CALL? -

asp.net core mvc - How important is the global.json and src folder? -