没有自动播放的播放列表的Flowplayer

时间:2014-01-14 21:23:09

标签: javascript html5 flowplayer

有人有一个例子,或者可以说Flowplayer是否可以拥有一个具有以下功能的播放列表:

  • 点击缩略图时无自动播放
  • 个别闪屏

autoPlay:false“似乎不适用于此。

1 个答案:

答案 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()

加载新视频