如何在video.js播放器中使音量栏垂直?

use*_*004 8 video.js

我已尝试在网站上给出的解决方案,但它没有用. 在video.js中设置音量控制垂直在 哪里我可以获得关于video.js的最佳教程..任何链接?

Cap*_*ine 12

对于6.2.0版:

var options = {
    controlBar: {
        volumePanel: {inline: false}
    },
};

videojs('my-video', options);
Run Code Online (Sandbox Code Playgroud)


小智 8

视频.js 7.10.2

var player = videojs('my-video', {
  controlBar: {
    volumePanel: {
      inline: false
    }
  },
});
Run Code Online (Sandbox Code Playgroud)


Bia*_*ing 6

对于video.js 5.x:

var options = {
  controlBar: {
    volumeMenuButton: {
      inline: false,
      vertical: true
    }
  }
};

videojs('player', options);
Run Code Online (Sandbox Code Playgroud)


Bro*_*nix -1

这是可以做到的。请参见:

http://jsbin.com/nidevo/2/edit?html,css,输出

https://github.com/videojs/video.js/issues/942

您引用的方法适用于 videojs 2.0