How to make videojs marker slidable or movable
问题 I want to move my markers whenever it is slided along with the seek. I expect my markers to be exactly slidable as jqueryui-slider Question: I want my markers (both) to be as slidable as jqueryui-range slider as shown below the video in the following example: var player = videojs('example_video_1'); function markplayer(){ var inTimeOutTimeList = [6.333,27.667]; for(var i = 0; i < inTimeOutTimeList.length; i++){ player.markers.add([{ time: inTimeOutTimeList[i], text: inTimeOutTimeList[i] }]);