Skip to content

Commit

Permalink
Merge pull request #56 from TartejBrothers/Updates
Browse files Browse the repository at this point in the history
Updated: Animations
  • Loading branch information
TartejBrothers committed Jun 8, 2024
2 parents 7d205b0 + ee16fb9 commit 437e244
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
8 changes: 6 additions & 2 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,14 @@
}

.slide-up {
animation: slideUp linear;
animation-timeline: view();
animation-range-start: 00px;
animation-range-start: 0vh;
animation-range-end: 100vh;

animation-name: fade-in;
animation-fill-mode: both;
animation-duration: 100ms;
animation-timing-function: linear;
}

#testimonial {
Expand Down
8 changes: 6 additions & 2 deletions src/components/styles/contact.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,14 @@
}

.contactmain {
animation: charactershow linear;
animation-timeline: view();
animation-range-start: 00px;
animation-range-start: 0vh;
animation-range-end: 100vh;

animation-name: charactershow;
animation-fill-mode: both;
animation-duration: 100ms;
animation-timing-function: linear;
}

@media screen and (max-width: 1000px) {
Expand Down
7 changes: 4 additions & 3 deletions src/components/styles/expertisecomponent.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,14 @@
}
}
.leftexpertisebody {
animation: expertisecontenthide;
animation-timeline: view();
animation-range-start: 60vh;
animation-range-end: 90vh;
animation-fill-mode: forwards;

animation-duration: 2s;
animation-name: expertisecontenthide;
animation-fill-mode: both;
animation-duration: 100ms;
animation-timing-function: linear;
}
@media screen and (max-width: 1000px) {
.rightexpertise {
Expand Down

0 comments on commit 437e244

Please sign in to comment.