Final attempt
This commit is contained in:
parent
f2de01a82a
commit
231c550005
1 changed files with 7 additions and 5 deletions
|
@ -37,7 +37,9 @@ body {
|
|||
}
|
||||
|
||||
.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;
|
||||
max-width: 75%;
|
||||
padding-top: 30px;
|
||||
|
@ -45,7 +47,7 @@ body {
|
|||
}
|
||||
|
||||
.animatedMain {
|
||||
animation: fadeDelay 1s linear;
|
||||
animation: fadeDelay 1s cubic-bezier(0.075, 0.82, 0.165, 1);
|
||||
animation-delay: 1.25s;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
@ -116,12 +118,12 @@ img:not(.project-inner > div > img):not(.activity>img) {
|
|||
}
|
||||
|
||||
@keyframes mainText {
|
||||
0% {
|
||||
/* 0% {
|
||||
transform: translateY(calc(50vh - 6rem)) scale(1.5);
|
||||
opacity: 0;
|
||||
}
|
||||
} */
|
||||
|
||||
50% {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateY(calc(50vh - 6rem)) scale(1.25);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue