Setting vertical volume control in video.js

There I played with the video.js HTML5 video player component. And the player is absolutely amazing and meets almost all my requirements.

The only problem I am facing is that it has a horizontal volume control panel, and I want to place the volume control panel vertically, similar to what it sets in backward mode.

Any help in this regard would be greatly appreciated.

Thanx

0
source share
1 answer

It worked for me

vjs.ControlBar.prototype.options_ = { children: { 'volumeMenuButton': { 'volumeBar': { 'vertical': true } } } }; 
0
source

Source: https://habr.com/ru/post/1235484/


All Articles