Questions tagged «video.js»

2
如何使标记动态标记正在进行的任何地方
我的标记有问题,我希望标记可以拉伸以标记进度条上的任何位置 如下图所示 问题:我想选择进度条上的任意点并能够拉伸标记,该标记可以是多个标记点。 我不知道如何使用下面的代码: var player = videojs('demo'); player.markers({ markerStyle: { 'width':'9px', 'border-radius': '40%', 'background-color': 'orange' }, markerTip:{ display: true, text: function(marker) { return "I am a marker tip: "+ marker.text; } }, breakOverlay:{ display: true, displayTime: 4, style:{ 'width':'100%', 'height': '30%', 'background-color': 'rgba(10,10,10,0.6)', 'color': 'white', 'font-size': '16px' }, text: …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.