From 29e37afa71bbfa5767d7f0d98b90dfee4f6229b8 Mon Sep 17 00:00:00 2001 From: grandeljay Date: Thu, 16 Jun 2022 14:52:18 +0200 Subject: [PATCH] Improve logo animation --- src/assets/css/home.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/assets/css/home.css b/src/assets/css/home.css index 39ef3f76..05e7d9dc 100644 --- a/src/assets/css/home.css +++ b/src/assets/css/home.css @@ -13,33 +13,33 @@ #text-list { animation: 0.4s 1s ease text-list; - animation-fill-mode: both; + animation-fill-mode: forwards; } @keyframes text-list { 0% { opacity: 1; - transform: matrix(3.63682, 0, 0, 3.63682, 425.483, 130.092); + transform: matrix(3.6368233, 0, 0, 3.6368233, 425.48266, 130.09212); } 100% { opacity: 0; - transform: matrix(3.63682, 0, 0, 3.63682, 426.568, 30.092); + transform: matrix(3.6368233, 0, 0, 3.6368233, 425.48266, 30.092); } } #text-this { animation: 0.4s 1s ease text-this; - animation-fill-mode: both; + animation-fill-mode: forwards; } @keyframes text-this { 0% { opacity: 0; - transform: matrix(3.63682, 0, 0, 3.63682, 426.568, 135.761); + transform: matrix(3.6368233, 0, 0, 3.6368233, 425.48266, 135.76144); } 100% { opacity: 1; - transform: matrix(3.63682, 0, 0, 3.63682, 426.568, 35.761); + transform: matrix(3.6368233, 0, 0, 3.6368233, 425.48266, 35.76144); } }