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

时间:2015-11-08 18:12:14

标签: video.js

我在网站上尝试了解决方案,但它没有用。 Setting up volume control vertical in video.js 我可以在哪里获得关于video.js的最佳教程..任何链接?

5 个答案:

答案 0 :(得分:11)

对于6.2.0版:

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

videojs('my-video', options);

答案 1 :(得分:6)

对于video.js 5.x:

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

videojs('player', options);

答案 2 :(得分:2)

Video.js 7.10.2

var player = videojs('my-video', {
  controlBar: {
    volumePanel: {
      inline: false
    }
  },
});

答案 3 :(得分:0)

const options: VideoJsPlayerOptions = {
        controlBar: {
          volumePanel: {
            inline: false,
            volumeControl: {
              vertical: true
            }
          }
        }
      };

答案 4 :(得分:-1)

这可以做到。请参阅:

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

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

你引用的方法是videojs 2.0