我已经看到两个据称可以做到这一点,但似乎无法在我的播放器中得到我想要的结果。我只想切换volumeBar以垂直显示。我正在使用video.js v4.3并使用默认皮肤。一切正常,但我无法让滑块改变方向。我尝试了以下内容:
videojs("{{video id}}", {
"controls": true,
"autoplay": false,
"preload": "auto",
"poster": "{{image}}",
"width": {{width}},
"height": {{height}},
'children': {
'controlBar': {
'children': {
'volumeControl': {
'children': {
'volumeBar' : {
vertical: true
}
}
}
}
}
}
}, function(){
// Do things
});
和
videojs("{{video id}}", {
"controls": true,
"autoplay": false,
"preload": "auto",
"poster": "{{image}}",
"width": {{width}},
"height": {{height}},
'volumeBar': {
'vertical': true
}
}, function(){
// Do things
});
感谢您的帮助,如果我在这里遗失了某些东西,请告诉我。