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.
希望你能提供帮助。我想知道是否可以检查背景视频是否已加载?
过去我使用imagesLoaded来检查背景图像是否已加载,但我希望我可以为背景视频做类似的事情?
任何帮助/建议将不胜感激。
谢谢!
假设您正在查看 HTML5 实现,HTML5 视频标签支持加载视频的回调:
var myVideo = document.getElementById("myBackgroundVideoID"); myVideo.onloadeddata = function() { //Do whatever you want when video is loaded here };