Skip to content

Commit

Permalink
updated new animations
Browse files Browse the repository at this point in the history
  • Loading branch information
4darsh-Dev committed Apr 16, 2024
1 parent 45e3ece commit 23b2d22
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions dynamics.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,27 @@
animation: showText 0.5s 1s linear forwards;
opacity: 0;
}

@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}


/* Add animation to image */
@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
}

.bouncing {
animation: bounce 2s ease-in-out infinite;
}

0 comments on commit 23b2d22

Please sign in to comment.