HTML 视频/音频在多次加载时崩溃

发布于 2024-10-21 17:29:50 字数 355 浏览 1 评论 0原文

我有一个带有多个缩略图(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文