修改显示头像时机
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3m30s

This commit is contained in:
宋居成 2025-08-06 18:46:20 +08:00
parent b2c3fd56ac
commit 85a92ac0d3

View File

@ -948,10 +948,10 @@ class WebRTCChat {
this.stopButton.style.display = 'none';
this.stopButton.disabled = true;
// 显示头像,隐藏视频
if (this.videoContainer) {
this.videoContainer.classList.remove('calling');
}
// // 显示头像,隐藏视频
// if (this.videoContainer) {
// this.videoContainer.classList.remove('calling');
// }
// 延迟刷新,确保服务器处理完断开逻辑
console.log('通话已结束5秒后刷新页面清除缓存...');
@ -960,6 +960,13 @@ class WebRTCChat {
this.startButton.style.display = 'block';
this.startButton.disabled = false;
}, 2000);
setTimeout(() => {
// 显示头像,隐藏视频
if (this.videoContainer) {
this.videoContainer.classList.remove('calling');
}
}, 300);
}
// 清除视频缓存的方法