Во-первых, сделайте ваши маркеры перетаскиваемыми, используя jQuery встроенный метод пользовательского интерфейса.
$('body').on('mousedown', '.vjs-marker', function(e) {
$(e.target).draggable({
axis: 'x',
containment: '.vjs-progress-control',
});
}).on('mouseup', function(e) {
$('.vjs-marker').css('top','-8px');
});
Так как маркер хочет подняться к верхнему краю индикатора выполнения, я дал ему top: -8px
mouseup
.
Затем добавьте метод onMarkerClick
к вашему вызову player.markers()
, чтобы обновить время.
onMarkerClick: function(marker) {
marker.time = player.currentTime();
player.markers.updateTime();
},
И я заметил, что вы добавляете пустой маркер в 10 секунд, поэтому я заменил это пустым массивом.
markers: []
Наконец, я добавил несколько кнопок Prev и Next, чтобы вы могли видеть, что маркеры работают после скольжения.
Редактировать:
Посмотрев на ответ Маамуна Отмана , я понял, что в моем решении чего-то не хватает. В отличие от примера ползунка диапазона, мои маркеры могли пересекаться друг с другом.
Поэтому я использовал свойство drag
объекта draggable
, чтобы ограничить диапазон маркеров.
...
drag: function( e, ui ) {
if ( $(e.target).index('.vjs-marker') === 0 ) {
const outPosition = parseInt( $('.vjs-slider .vjs-marker:eq(1)').css('left') );
ui.position.left = Math.min( outPosition, ui.position.left );
}
else {
const inPosition = parseInt( $('.vjs-slider .vjs-marker:eq(0)').css('left') );
ui.position.left = Math.max( inPosition, ui.position.left );
}
}
...
var player = videojs('example_video_1');
function markplayer() {
var inTimeOutTimeList = [1.2, 4.2];
var labelList = ['In Point', 'Out Point'];
for (var i = 0; i < inTimeOutTimeList.length; i++) {
player.markers.add([{
time: inTimeOutTimeList[i],
text: labelList[i]
}]);
var icon = (i == 0) ? '[' : ']';
$(".vjs-marker[data-marker-time='" + inTimeOutTimeList[i] + "']").html(icon);
}
};
player.markers({
breakOverlay: {
display: true,
displayTime: 120,
style: {
'width': '100%',
'height': '30%',
'background-color': 'rgba(10,10,10,0.6)',
'color': 'white',
'font-size': '16px'
}
},
onMarkerClick: function(marker, index) {
marker.time = player.currentTime();
player.markers.updateTime();
},
markers: []
});
setTimeout(function() {
markplayer();
}, 2000);
$(function() {
$('body').on('mousedown', '.vjs-marker', function(e) {
$(e.target).draggable({
axis: 'x',
containment: '.vjs-progress-control',
drag: function(e, ui) {
if ($(e.target).index('.vjs-marker') === 0) {
const outPosition = parseInt( $('.vjs-slider .vjs-marker:eq(1)').css('left') );
ui.position.left = Math.min(outPosition, ui.position.left);
} else {
const inPosition = parseInt( $('.vjs-slider .vjs-marker:eq(0)').css('left') );
ui.position.left = Math.max(inPosition, ui.position.left);
}
}
});
}).on('mouseup', function(e) {
$('.vjs-marker').css('top', '-8px');
});
$("#prev").click(function() {
player.markers.prev();
});
$("#next").click(function() {
player.markers.next();
});
});
body {
text-align: center;
}
#example_video_1 {
margin: auto;
}
#buttons {
margin-top: 1em;
}
.vjs-fluid {
overflow: hidden;
}
#example_video_1 .vjs-control-bar {
display: block;
}
#example_video_1 .vjs-progress-control {
bottom: 28px;
left: 0;
height: 10px;
width: 100%;
}
.vjs-default-skin.vjs-has-started .vjs-control-bar {
display: block !important;
visibility: visible !important;
opacity: 1 !important;
}
.vjs-marker {
background-color: transparent !important;
height: 20px !important;
font-size: 20px !important;
color: red !important;
font-weight: bold;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://vjs.zencdn.net/4.2/video.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/videojs-markers/0.7.0/videojs-markers.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link href="https://vjs.zencdn.net/4.2/video-js.css" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/videojs-markers/0.7.0/videojs.markers.min.css" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css" rel="stylesheet" />
<video id="example_video_1" width="400" height="210" controls class="video-js vjs-default-skin" data-setup='{ "inactivityTimeout": 0 }'>
<source src="https://interactive-examples.mdn.mozilla.net/media/examples/flower.mp4" type="video/mp4">
<source src="https://interactive-examples.mdn.mozilla.net/media/examples/flower.webm" type="video/webm">
</video>
<div id="buttons">
<button id="prev">Previous</button> | <button id="next">Next</button>
</div>