From 57f311036b7e97453413b47ebe5d1248dfff50cc Mon Sep 17 00:00:00 2001 From: hongjli <3117313295@qq.com> Date: 星期三, 23 四月 2025 15:14:02 +0800 Subject: [PATCH] 新建聊天页面 --- src/app/globals.css | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 9ed40ec..7a4563e 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -44,6 +44,8 @@ color: rgb(var(--foreground-rgb)); font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif; min-height: 100vh; + opacity: 1; + transition: opacity 0.2s ease-out; } /* 婊氬姩鎬ц兘浼樺寲 */ @@ -819,3 +821,23 @@ .animate-error-scan { animation: error-scan 2s linear infinite; } + +/* 椤甸潰杩囨浮鏁堟灉 */ +.page-transitioning { + animation: fadeOut 0.2s ease-out forwards; + pointer-events: none; +} + +@keyframes fadeOut { + from { + opacity: 1; + } + to { + opacity: 0; + } +} + +/* 闃叉閾炬帴鐐瑰嚮鏃剁殑闂儊 */ +.no-flash-link { + -webkit-tap-highlight-color: transparent; +} -- Gitblit v1.9.3