Mục lục bài viết
Update: 2022-01-07 08:52:09,Bạn Cần tương hỗ về Videojs playlist demo. Bạn trọn vẹn có thể lại Thảo luận ở cuối bài để Ad đc tương hỗ.
videojs-playlists demo
Previous
Next
The public repository can be found here.
var videos = [
src : [
‘http://stream.flowplayer.org/bauhaus/624×260.webm’,
‘http://stream.flowplayer.org/bauhaus/624×260.mp4’,
‘http://stream.flowplayer.org/bauhaus/624×260.ogv’
],
poster : ‘flowplayer/truyền thông/img/demos/minimalist.jpg’,
title : ‘Video 1’
,
src : [
‘http://stream.flowplayer.org/night3/640×360.webm’,
‘http://stream.flowplayer.org/night3/640×360.mp4’,
‘http://stream.flowplayer.org/night3/640×360.ogv’
],
poster : ‘flowplayer/truyền thông/img/demos/playlist/railway_station.jpg’,
title : ‘Video 2’
,
src : [
‘http://stream.flowplayer.org/functional/624×260.webm’,
‘http://stream.flowplayer.org/functional/624×260.mp4’,
‘http://stream.flowplayer.org/functional/624×260.ogv’
],
poster : ‘flowplayer/truyền thông/img/demos/functional.jpg’,
title : ‘Video 3’
];
var player = videojs(‘video’);
player.playList(videos,
getVideoSource: function(vid, cb)
cb(vid.src, vid.poster);
);
$(‘[data-action=prev]’).on(‘click’, function(e)
player.prev();
);
$(‘[data-action=next]’).on(‘click’, function(e)
player.next();
);/* Styles go here */
//videojs-playlists.js
function playList(options,arg)
videojs.Player.prototype.next = function()
this.pl._nextPrev(‘next’);
return this;
;
videojs.Player.prototype.prev = function()
this.pl._nextPrev(‘prev’);
return this;
;
videojs.plugin(‘playList’, playList);
Reply
3
0
Chia sẻ
– Một số từ khóa tìm kiếm nhiều : ” Video full hướng dẫn Videojs playlist demo tiên tiến và phát triển nhất , Share Link Cập nhật Videojs playlist demo “.
Bạn trọn vẹn có thể để lại Comments nếu gặp yếu tố chưa hiểu nghen.
#Videojs #playlist #demo