Skip to content

Commit

Permalink
Added all animation functions
Browse files Browse the repository at this point in the history
  • Loading branch information
SuhainaFathimaM authored Jun 6, 2024
1 parent ac108ec commit 95594d9
Showing 1 changed file with 363 additions and 0 deletions.
363 changes: 363 additions & 0 deletions Projects/organica/assets/css/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -940,3 +940,366 @@
.partner-item { min-width: 16.66%; }

}

@keyframes heroSubtitleAnimation {
0% {
transform: translateY(0);
opacity: 1;
}
50% {
transform: translateY(-5px);
opacity: 0.8;
}
100% {
transform: translateY(0);
opacity: 1;
}
}

@keyframes heroTitleAnimation {
0% {
transform: translateX(0);
opacity: 1;
}
50% {
transform: translateX(-10px);
opacity: 0.8;
}
100% {
transform: translateX(0);
opacity: 1;
}
}

@keyframes heroTextAnimation {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.05);
opacity: 0.8;
}
100% {
transform: scale(1);
opacity: 1;
}
}

@keyframes heroButtonAnimation {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.1);
opacity: 0.8;
}
100% {
transform: scale(1);
opacity: 1;
}
}

@keyframes serviceIconAnimation {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.1);
opacity: 0.8;
}
100% {
transform: scale(1);
opacity: 1;
}
}

@keyframes serviceTitleAnimation {
0% {
transform: translateX(0);
opacity: 1;
}
50% {
transform: translateX(-10px);
opacity: 0.8;
}
100% {
transform: translateX(0);
opacity: 1;
}
}

@keyframes offersCardAnimation {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.1);
opacity: 0.8;
}
100% {
transform: scale(1);
opacity: 1;
}
}

@keyframes offersSubtitleAnimation {
0% {
transform: translateX(0);
opacity: 1;
}
50% {
transform: translateX(-10px);
opacity: 0.8;
}
100% {
transform: translateX(0);
opacity: 1;
}
}

@keyframes offersTitleAnimation {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.05);
opacity: 0.8;
}
100% {
transform: scale(1);
opacity: 1;
}
}

@keyframes offersButtonAnimation {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.1);
opacity: 0.8;
}
100% {
transform: scale(1);
opacity: 1;
}
}

@keyframes ctaSubtitleAnimation {
0% {
transform: translateY(0);
opacity: 1;
}
50% {
transform: translateY(-5px);
opacity: 0.8;
}
100% {
transform: translateY(0);
opacity: 1;
}
}

@keyframes ctaTitleAnimation {
0% {
transform: translateX(0);
opacity: 1;
}
50% {
transform: translateX(-10px);
opacity: 0.8;
}
100% {
transform: translateX(0);
opacity: 1;
}
}

@keyframes ctaTextAnimation {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.05);
opacity: 0.8;
}
100% {
transform: scale(1);
opacity: 1;
}
}

@keyframes ctaButtonAnimation {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.1);
opacity: 0.8;
}
100% {
transform: scale(1);
opacity: 1;
}
}

@keyframes topProductCardAnimation {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.1);
opacity: 0.8;
}
100% {
transform: scale(1);
opacity: 1;
}
}

@keyframes topProductTitleAnimation {
0% {
transform: translateX(0);
opacity: 1;
}
50% {
transform: translateX(-10px);
opacity: 0.8;
}
100% {
transform: translateX(0);
opacity: 1;
}
}

@keyframes topProductButtonAnimation {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.05);
opacity: 0.8;
}
100% {
transform: scale(1);
opacity: 1;
}
}


@keyframes partnerLogoAnimation {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.1);
opacity: 0.8;
}
100% {
transform: scale(1);
opacity: 1;
}
}

@keyframes testimonialsTitleAnimation {
0% {
transform: translateX(0);
opacity: 1;
}
50% {
transform: translateX(-10px);
opacity: 0.8;
}
100% {
transform: translateX(0);
opacity: 1;
}
}

@keyframes blogCardAnimation {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.1);
opacity: 0.8;
}
100% {
transform: scale(1);
opacity: 1;
}
}

@keyframes blogTitleAnimation {
0% {
transform: translateX(0);
opacity: 1;
}
50% {
transform: translateX(-10px);
opacity: 0.8;
}
100% {
transform: translateX(0);
opacity: 1;
}
}

@keyframes newsletterSubtitleAnimation {
0% {
transform: translateY(0);
opacity: 1;
}
50% {
transform: translateY(-5px);
opacity: 0.8;
}
100% {
transform: translateY(0);
opacity: 1;
}
}


@keyframes newsletterTitleAnimation {
0% {
transform: translateX(0);
opacity: 1;
}
50% {
transform: translateX(-10px);
opacity: 0.8;
}
100% {
transform: translateX(0);
opacity: 1;
}
}


@keyframes newsletterButtonAnimation {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.05);
opacity: 0.8;
}
100% {
transform: scale(1);
opacity: 1;
}
}

0 comments on commit 95594d9

Please sign in to comment.