简体   繁体   中英

Mediaelement.js simple audio playlist skin

I've been searching the documentation of mediaelement.js for a Playlist skin( or atleast a skin that has previous and forward button) does such thing exist? I've seen examples online that has a previous and next button. I was aiming for something like this.

在此处输入图片说明

You can extend this plugin by hark.com

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

Example:

Previous Button:

(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);

Then you can add this to the options in mediaelement.js

prevFunc: function(){
    // add previous functionality here
    alert("Previous!");
},

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM