I am trying to customize the skin of my JWplayer
like this:
This is my current progress:
I have been researching how to rearrange the order of icon / button
on the controlbar
. According to the jwplayer
documentation, the buttons on the controlbar are divided into 3 groups: middle, left, and right. I want to switch some buttons from the left group to the right group.
jwplayer("player").setup({
skin: {
url:"jwplayer/skins/player.css",
name: "player"
},
width: "100%",
height: 100,
playlist: [{
"file": "katachi.mp3",
"title": "Shugo Tokumaru",
"description": "Katachi"
},
{
"file": "vektor.mp3",
"title": "Shugo Tokumaru",
"description": "Vektor feat"
},
{
"file": "decorate.mp3",
"title": "Shugo Tokumaru",
"description": "Decorate"
}]
});
Is there a method to adjust the order of the buttons in the JWPlayer
controlbar?