Display a tooltip on hover with the time on video.js players.
This plugin was updated to and tested on video.js 4.6.4. It depends on jQuery.
Download videojs and videojs.ga
In your web page:
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<script src="https://github.com/mickey/videojs-progressTips/raw/master/video.js"></script>
<script src="https://github.com/mickey/videojs-progressTips/raw/master/dist/videojs.progressTips.min.js"></script>
<link rel="stylesheet" href="https://github.com/mickey/videojs-progressTips/blob/master/dist/videojs.progressTips.css" type="text/css" />
<video id="video" src="https://github.com/mickey/videojs-progressTips/raw/master/movie.mp4" controls></video>
<script>
videojs('video', {}, function() {
this.progressTips(); // "load the plugin, no options!"
});
</script>
No options so far! YAY!