diff --git a/src/index.html b/src/index.html index d2a3976..df81ae5 100644 --- a/src/index.html +++ b/src/index.html @@ -119,6 +119,27 @@ 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 { width: 40px; @@ -451,6 +472,12 @@
+ + +