1

mediaelement.js のドキュメントでプレイリスト スキン (または少なくとも前と進むボタンがあるスキン) を検索していますが、そのようなものは存在しますか? 前へと次へのボタンがある例をオンラインで見たことがあります。こんなものを目指していました。

ここに画像の説明を入力

4

1 に答える 1

1

このプラグインは 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!");
},
于 2013-12-11T11:25:09.550 に答える