Skip to content

Instantly share code, notes, and snippets.

View MuhammedAlkhudiry's full-sized avatar

Muhammed Alkhudiry MuhammedAlkhudiry

  • Tamkeen Technologies
  • Saudi Arabia
View GitHub Profile
@MuhammedAlkhudiry
MuhammedAlkhudiry / scale fade animation.css
Created December 6, 2020 11:49
scale fade animation
.fade-in {
animation: fade-in .2s ease-in-out;
animation-fill-mode: forwards;
opacity: 0;
transform: scale(0.96);
}
@keyframes fade-in {
100% {
transform: scale(1);
.fade-in {
animation: fade-in .2s ease-in-out;
animation-fill-mode: forwards;
opacity: 0;
transform: scale(0.96);
}
@keyframes fade-in {
100% {
transform: scale(1);