Videojs playlist demo Đầy đủ
Kinh Nghiệm Hướng dẫn Videojs playlist demo Chi Tiết
You đang tìm kiếm từ khóa Videojs playlist demo được Update vào lúc : 2022-01-07 08:51:06 . Với phương châm chia sẻ Mẹo về trong nội dung bài viết một cách Chi Tiết Mới Nhất. Nếu sau khi đọc tài liệu vẫn ko hiểu thì hoàn toàn có thể lại phản hồi ở cuối bài để Admin lý giải và hướng dẫn lại nha.
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 : ‘http://flowplayer.org/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 : ‘http://flowplayer.org/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 : ‘http://flowplayer.org/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ẻ
Share Link Tải Videojs playlist demo miễn phí
Bạn vừa tìm hiểu thêm nội dung bài viết Với Một số hướng dẫn một cách rõ ràng hơn về Review Videojs playlist demo tiên tiến và phát triển nhất và ShareLink Download Videojs playlist demo Free.
Hỏi đáp vướng mắc về Videojs playlist demo
Nếu sau khi đọc nội dung bài viết Videojs playlist demo vẫn chưa hiểu thì hoàn toàn có thể lại Comment ở cuối bài để Mình lý giải và hướng dẫn lại nha
#Videojs #playlist #demo