Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
此视频设置为自动播放和循环播放。开始没问题。车轮旋转视频加载。但在第一次播放后,微调器再次出现。有什么解决办法吗?
也许这是相关的问题:
通过 Internet Explorer 打开时 videojs.com 上的测试视频。单击播放,然后跳到视频结尾附近。它没有设置为循环播放,但无论如何播放后它会以暂停模式返回开始,您实际上可以看到播放按钮后面的微调器。但是它不是动画的,在我的情况下它正在旋转。
您可以添加:data-setup='{"children": {"loadingSpinner": false}}'到您的视频标签,它将删除微调器。
data-setup='{"children": {"loadingSpinner": false}}'
这似乎是VideoJS的一个相当普遍的问题。我注意到您已经display: none;在.vjs-loading-spinner元素上进行了设置,但它不起作用,所以我能够通过使用 jQuery从 dom中删除元素来摆脱它。
display: none;
.vjs-loading-spinner
$('.vjs-loading-spinner').remove();
这应该可以解决问题,尽管我意识到这可能并不理想。