Skip to content

Commit

Permalink
Added Animation to images
Browse files Browse the repository at this point in the history
  • Loading branch information
sau-mili committed May 17, 2024
1 parent f9ce526 commit d0d2d9f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1132,6 +1132,17 @@ support for no js

background-repeat: no-repeat;
background-position: center center;
/* Animation properties */
animation: slideInFromRight 1s ease-out forwards;
}

@keyframes slideInFromRight {
from {
transform: translateX(100%);
}
to {
transform: translateX(0);
}
}
.title-fs-45 {
color:#4b4e53;
Expand All @@ -1154,6 +1165,17 @@ support for no js
overflow: hidden;
background-repeat: no-repeat;
background-position: center center;
animation: slideInFromLeft 1s ease-out forwards;
}


@keyframes slideInFromLeft {
from {
transform: translateX(-100%);
}
to {
transform: translateX(0);
}
}
.line-3-70{
margin-top:11px;
Expand Down

0 comments on commit d0d2d9f

Please sign in to comment.