From e1082141d08aa880d57bf94cb2414697b3bd751a Mon Sep 17 00:00:00 2001 From: Council Date: Sat, 27 Jun 2026 21:47:24 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E5=85=A8=E5=B1=80=E5=BA=94=E7=94=A8?= =?UTF-8?q?=E6=96=B9=E6=A1=88=E4=BA=8C=EF=BC=8C=E5=B0=86=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E6=B7=A1=E5=85=A5=E6=B8=90=E5=8F=98=E5=8A=A8=E7=94=BB=E6=8E=A8?= =?UTF-8?q?=E5=B9=BF=E5=88=B0=E6=89=80=E6=9C=89=E6=A0=B8=E5=BF=83=20TabBar?= =?UTF-8?q?=20=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/css/animation.css | 24 ++++++++++++++++++- pages/cart/cart.vue | 2 +- pages/goods-category/goods-category.vue | 2 +- pages/goods-search/goods-search.css | 14 +---------- pages/index/index.vue | 2 +- .../vr-ticket-wallet/ticket-wallet.css | 13 ---------- pages/user/user.vue | 2 +- 7 files changed, 28 insertions(+), 31 deletions(-) diff --git a/common/css/animation.css b/common/css/animation.css index 8b12ee32..6d43ceb8 100644 --- a/common/css/animation.css +++ b/common/css/animation.css @@ -707,4 +707,26 @@ transform: scale3d(1, 1, 1); } } - \ No newline at end of file + + +/* 页面淡入渐变动画 */ +.page-fade-in { + -webkit-animation: pageFadeIn 0.25s ease-out forwards; + animation: pageFadeIn 0.25s ease-out forwards; +} +@keyframes pageFadeIn { + from { + opacity: 0; + } + to { + opacity: 1; + } +} +@-webkit-keyframes pageFadeIn { + from { + opacity: 0; + } + to { + opacity: 1; + } +} diff --git a/pages/cart/cart.vue b/pages/cart/cart.vue index e28db366..08a99fde 100644 --- a/pages/cart/cart.vue +++ b/pages/cart/cart.vue @@ -1,5 +1,5 @@