我一直在mediaelement.js的文档中搜索播放列表外观(或至少具有上一步和前进按钮的外观)是否存在这种东西?我在网上看到了带有上一个和下一个按钮的示例。我的目标是这样的。

最佳答案

您可以通过hark.com扩展此插件

https://github.com/hark/mediaelement-plugins

例:

上一个按钮:

(function($){
  MediaElementPlayer.prototype.buildprevious = function(player, controls, layers, media){
    var loop = $('<div class="mejs-button mejs-previous-button">' +
      '</div>')
      // append it to the toolbar
      .appendTo(controls)
      // add a click toggle event
      .click(function(){
        // window.open(player.options.logo.link, '_blank');
        player.options.prevFunc.apply(this);
      });
  };
})(jQuery);

然后可以将其添加到mediaelement.js中的选项中
prevFunc: function(){
    // add previous functionality here
    alert("Previous!");
},

关于javascript - Mediaelement.js简单音频播放列表皮肤,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15133270/

10-13 02:24