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