This is a plugin based on jQuery for Video.js to make progress bar stronger.
- jQuery 1.8.3
- Video.js 4.7.3
<link href="videojs-progress.css" rel="stylesheet">
<script src="jquery.js"></script>
<script src="videojs-progress.js"></script>
<script>
videojs("myVideo").progress({
timepoints: [
{
time: 9,
text: "Video.js"
},
{
time: 16,
text: "progress bar"
},
{
time: 23,
text: "http://video-js.zencoder.com/oceans-clip.ogv"
},
{
time: 28,
text: "already"
},
{
time: 47,
text: "evolution"
}
]
});
</script>