From f8737fbba65f29bf75b83982cbb8a9a49473bf61 Mon Sep 17 00:00:00 2001 From: uniartisan Date: Sun, 23 Oct 2022 21:24:18 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E9=BB=91=E8=89=B2=E6=A8=A1=E5=BC=8F?= =?UTF-8?q?=E9=A6=96=E9=A1=B5=E5=91=8A=E7=9F=A5=E6=A0=8F=E4=B8=8B=E7=A7=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/darkmod/Mainpage.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/darkmod/Mainpage.vue b/src/darkmod/Mainpage.vue index a8151a7..8a6b341 100644 --- a/src/darkmod/Mainpage.vue +++ b/src/darkmod/Mainpage.vue @@ -2,6 +2,7 @@
+

星火商店3.3版本软件更新功能不生效的解决方法点我

Have more. -- Gitee From 64a76943957e49987c31a21d5cd34e60f84afc4b Mon Sep 17 00:00:00 2001 From: uniartisan Date: Wed, 26 Oct 2022 17:42:02 +0800 Subject: [PATCH 2/3] =?UTF-8?q?fix:=20=E8=A7=86=E8=A7=89=E6=95=88=E6=9E=9C?= =?UTF-8?q?=E6=8F=90=E5=8D=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/dark.css | 9 ++++++--- static/style.css | 9 ++++++--- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/static/dark.css b/static/dark.css index 0e4424f..a95f0f5 100644 --- a/static/dark.css +++ b/static/dark.css @@ -63,16 +63,19 @@ width: 300px; height: 100px; float: left; - filter: blur(50px) opacity(0%); + filter: blur(25px) opacity(2%); + transform: scale(3); position: relative; top: -100px; transition: all 0.3s; z-index: -1; - pointer-events: none; + visibility: hidden; } .item:hover .icon-bg{ pointer-events: none; - filter: blur(30px) opacity(30%); + filter: blur(25px) opacity(30%); + transform: scale(3); + visibility: visible; } .icon-m:hover { diff --git a/static/style.css b/static/style.css index 122edc2..63a84f3 100644 --- a/static/style.css +++ b/static/style.css @@ -63,16 +63,19 @@ width: 300px; height: 100px; float: left; - filter: blur(50px) opacity(0%); + filter: blur(25px) opacity(2%); + transform: scale(3); position: relative; top: -100px; transition: all 0.3s; z-index: -1; - pointer-events: none; + visibility: hidden; } .item:hover .icon-bg{ pointer-events: none; - filter: blur(50px) opacity(40%); + filter: blur(25px) opacity(40%); + transform: scale(3); + visibility: visible; } .icon-m:hover { -- Gitee From d3205e9c91aee969b854d72e974e81cf77628879 Mon Sep 17 00:00:00 2001 From: uniartisan Date: Sat, 5 Nov 2022 22:21:02 +0800 Subject: [PATCH 3/3] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=8A=A8=E7=94=BB?= =?UTF-8?q?=E5=B1=82=E7=BA=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/dark.css | 5 +++-- static/style.css | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/static/dark.css b/static/dark.css index a95f0f5..1eb9b24 100644 --- a/static/dark.css +++ b/static/dark.css @@ -43,6 +43,7 @@ -11px -11px 22px #2e2e2e; overflow: hidden; + z-index: 0; } .item:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.3); @@ -67,13 +68,13 @@ transform: scale(3); position: relative; top: -100px; - transition: all 0.3s; + transition-property: all linear; z-index: -1; visibility: hidden; } .item:hover .icon-bg{ pointer-events: none; - filter: blur(25px) opacity(30%); + filter: blur(25px) opacity(25%); transform: scale(3); visibility: visible; } diff --git a/static/style.css b/static/style.css index 63a84f3..d5229a0 100644 --- a/static/style.css +++ b/static/style.css @@ -42,6 +42,7 @@ -5px -5px 10px #ffffff; overflow: hidden; + z-index: 0; } .item:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.3); @@ -67,13 +68,13 @@ transform: scale(3); position: relative; top: -100px; - transition: all 0.3s; + transition-property: all linear; z-index: -1; visibility: hidden; } .item:hover .icon-bg{ pointer-events: none; - filter: blur(25px) opacity(40%); + filter: blur(25px) opacity(20%); transform: scale(3); visibility: visible; } -- Gitee