Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix animation #88

Merged
merged 3 commits into from
Nov 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ section {
background-position: 0 0;
transition: 0.8s;
letter-spacing: 2px;
animation: moveText 3s linear infinite;
animation: moveText 3s steps(9) infinite;
animation-delay: 2s;
}

Expand All @@ -220,7 +220,7 @@ section {
width: 0;
height: 70%;
border-right: 2px solid var(--main-color);
animation: moveCursorText 3s linear infinite;
animation: moveCursorText 3s steps(9) infinite;
animation-delay: 2s;
}

Expand Down Expand Up @@ -1074,12 +1074,13 @@ footer {
0%,
10%,
100% {
background-position: -24rem 0;
background-position: -23rem 0;
}

65%,
75%,
85% {
background-position: 0rem 0;
background-position: -13rem 0;
}
}

Expand All @@ -1091,9 +1092,9 @@ footer {
}

65%,
78%,
75%,
85% {
width: 60%;
width: 43%;
opacity: 1;
}

Expand Down