video.js使用
Posted 学不断,思还乱
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了video.js使用相关的知识,希望对你有一定的参考价值。
<!-- x5-playsinline="" playsinline="" webkit-playsinline=""加上可以解决微信浏览器默认最大化显示的问题-->
<video id="live-stream" src="" controls="" x5-playsinline="" playsinline="" webkit-playsinline="" poster="" preload="auto" class="video-js vjs-default-skin vjs-big-play-centered" controls preload="auto"> </video> <script> player = videojs(‘live-stream‘, { controls: true, autoplay: false, preload: ‘auto‘, loop: false, controlBar: { captionsButton: false, chaptersButton: false, playbackRateMenuButton: true, LiveDisplay: true, subtitlesButton: false, remainingTimeDisplay: true, progressControl: true, fullscreenToggle: false } }); </script>
以上是关于video.js使用的主要内容,如果未能解决你的问题,请参考以下文章