HTML 视频/音频在多次加载时崩溃
我有一个带有多个缩略图(10+)的应用程序,并手动设置了 onMouseEnter/Leave 来加载视频/音频文件,就像这样
onMouseEnter=function(){
videoPlayer.pause();
videoPlayer.src=that.videoPath;
videoPlayer.play()
}
它工作正常,但如果我移动鼠标太快,它就会崩溃。我尝试使用 setTimeOut()
延迟 1s,并使用 clearTimeout()
来防止干扰,但问题仍然存在。
有谁知道问题可能是什么?
谢谢
I have an application with multiple thumbnails (10+) and have manually set up onMouseEnter/Leave to load up a video/audio file like so
onMouseEnter=function(){
videoPlayer.pause();
videoPlayer.src=that.videoPath;
videoPlayer.play()
}
It works fine, but if I move the mouse too quickly, it crashes. I tried using setTimeOut()
with a 1s delay and using clearTimeout()
to prevent interference, but the problem still persisted.
Does anyone know what the problem could be?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论