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 @@
+ + +