Skip to content

Instantly share code, notes, and snippets.

@haikelfazzani
Created December 20, 2019 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haikelfazzani/6609c59d41883f6e4e90d76ae5846413 to your computer and use it in GitHub Desktop.
Save haikelfazzani/6609c59d41883f6e4e90d76ae5846413 to your computer and use it in GitHub Desktop.
css animations
/* fadeIn */
@keyframes fadeIn {
from {
opacity: 0;
transform: scale(0);
}
to {
opacity: 1;
transform: scale(1);
}
}
.fadein {
animation: fadeIn 6s;
-webkit-animation: fadeIn 6s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment