Final attempt

This commit is contained in:
bingus_violet 2024-09-26 14:28:07 -05:00
parent f2de01a82a
commit 231c550005

View file

@ -37,7 +37,9 @@ body {
} }
.animatedTitle { .animatedTitle {
animation: mainText 2s linear; animation: mainText 1s cubic-bezier(0.075, 0.82, 0.165, 1);
animation-delay: 1s;
animation-fill-mode: both;
margin: auto; margin: auto;
max-width: 75%; max-width: 75%;
padding-top: 30px; padding-top: 30px;
@ -45,7 +47,7 @@ body {
} }
.animatedMain { .animatedMain {
animation: fadeDelay 1s linear; animation: fadeDelay 1s cubic-bezier(0.075, 0.82, 0.165, 1);
animation-delay: 1.25s; animation-delay: 1.25s;
animation-fill-mode: both; animation-fill-mode: both;
} }
@ -116,12 +118,12 @@ img:not(.project-inner > div > img):not(.activity>img) {
} }
@keyframes mainText { @keyframes mainText {
0% { /* 0% {
transform: translateY(calc(50vh - 6rem)) scale(1.5); transform: translateY(calc(50vh - 6rem)) scale(1.5);
opacity: 0; opacity: 0;
} } */
50% { 0% {
opacity: 1; opacity: 1;
transform: translateY(calc(50vh - 6rem)) scale(1.25); transform: translateY(calc(50vh - 6rem)) scale(1.25);
} }