From 39a3163d81ca2643f9c8f522cb48cb0d0fa398ef Mon Sep 17 00:00:00 2001 From: camera-2018 <2907618001@qq.com> Date: Thu, 20 Jul 2023 12:38:25 +0800 Subject: [PATCH] fix: pic to oss --- components/Parallax.vue | 40 +++++++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 15 deletions(-) diff --git a/components/Parallax.vue b/components/Parallax.vue index fe7ce8ba..e83fa871 100644 --- a/components/Parallax.vue +++ b/components/Parallax.vue @@ -104,9 +104,11 @@ export default {
- +
- +
@@ -124,14 +126,13 @@ export default { z-index: 1; transition: .3s ease-out; } + #kirakira:hover { - background-image: linear-gradient( - 110deg, - transparent 25%, - #ec9bb6 48%, - #ccac6f 52%, - transparent 75% - ); + background-image: linear-gradient(110deg, + transparent 25%, + #ec9bb6 48%, + #ccac6f 52%, + transparent 75%); background-position: 50% 50%; background-size: 250% 250%; opacity: .18; @@ -142,30 +143,39 @@ export default { transition: all .33s ease; animation: holoGradient 12s ease 0s 1, } + @keyframes holoGradient { - 0%, 100% { + + 0%, + 100% { opacity: 0.3; background-position: 50% 50%; filter: brightness(.5) contrast(1); } - 5%, 9% { + + 5%, + 9% { background-position: 100% 100%; opacity: 0.1; filter: brightness(.75) contrast(1.25); } - 13%, 17% { + + 13%, + 17% { background-position: 0% 0%; opacity: .18; } - 35%, 39% { + + 35%, + 39% { background-position: 100% 100%; opacity: 0.2; filter: brightness(.5) contrast(1); } + 55% { background-position: 0% 0%; opacity: 0.3; filter: brightness(.75) contrast(1.25); } -} - \ No newline at end of file +} \ No newline at end of file