有人有一个例子,或者可以说Flowplayer是否可以拥有一个具有以下功能的播放列表:
autoPlay:false“似乎不适用于此。
答案 0 :(得分:0)
在Flowplayer api中似乎没有一种简单的方法可以做到这一点。我认为最好的方法是处理缩略图上的点击事件,更改启动图像并卸载播放器。
示例强>
var api = flowplayer();
$('.thumbnails').click(function (e) {
e.preventDefault();
// Store the splash image url in a data attribute.
var splashUrl = $(this).data('splash');
//Replace the splash image.
$('#player').css('background-image', 'url(' + splashUrl + ')');
//Unload the player.
api.unload();
});
当用户点击播放器时,使用api.load()