如何设置videojs以具有垂直音量滑块

时间:2014-01-16 01:24:27

标签: javascript video.js

我已经看到两个据称可以做到这一点,但似乎无法在我的播放器中得到我想要的结果。我只想切换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
});

感谢您的帮助,如果我在这里遗失了某些东西,请告诉我。

0 个答案:

没有答案