Skip to content

Instantly share code, notes, and snippets.

@bobotangpy
Forked from theanhdo94/simpe-fade.scss
Created November 10, 2021 05:02
Show Gist options
  • Select an option

  • Save bobotangpy/73cc51f0d4f578f80070bb5a408639a9 to your computer and use it in GitHub Desktop.

Select an option

Save bobotangpy/73cc51f0d4f578f80070bb5a408639a9 to your computer and use it in GitHub Desktop.
Simple fade animation using SCSS
/** Register your custom effects **/
@-webkit-keyframes fadeEffect {
from {opacity: 0;}
to {opacity: 1;}
}
@keyframes fadeEffect {
from {opacity: 0;}
to {opacity: 1;}
}
/** Usage css **/
.your-element {
-webkit-animation: fadeEffect 1s;
animation: fadeEffect 1s; /* Fading effect takes 1 second */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment