Setting up volume control vertical in video.js

泄露秘密 提交于 2019-12-12 00:55:51

问题


There i have been playing around with the HTML5 video.js video player component . And player is absolutely awesome and meet almost all my requirements .

The only issue i have ran into is it has a horizontal volume control bar and i want to place the volume control bar vertical similar to what it sets in flash fall back mode .

Any help regarding this would be really appreciated.

Thanx


回答1:


This worked for me

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


来源:https://stackoverflow.com/questions/22317159/setting-up-volume-control-vertical-in-video-js

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!