From 8dc78dd6e338ffbbe61c3f908e5760a2e6b59874 Mon Sep 17 00:00:00 2001 From: Song367 <601337784@qq.com> Date: Wed, 6 Aug 2025 13:16:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=AD=89=E5=BE=85=E6=8F=8F?= =?UTF-8?q?=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.html | 27 +++++++++++++++++++++++++++ src/index.js | 37 ++++++++++++++++++++++++++++++++++++- 2 files changed, 63 insertions(+), 1 deletion(-) diff --git a/src/index.html b/src/index.html index d2a3976..5706ada 100644 --- a/src/index.html +++ b/src/index.html @@ -118,6 +118,27 @@ .video-loading.show { opacity: 1; } + + /* 等待连接提示样式 */ + .connection-waiting { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + z-index: 20; + color: white; + font-size: 18px; + text-align: center; + background: rgba(0, 0, 0, 0.7); + padding: 30px; + border-radius: 15px; + backdrop-filter: blur(10px); + transition: opacity 0.3s ease; + } + + .connection-waiting.show { + opacity: 1; + } /* 加载动画 */ .loading-spinner { @@ -451,6 +472,12 @@
+ + +