Skip to content

Instantly share code, notes, and snippets.

@unrealapex
Last active October 19, 2021 22:26
Show Gist options
  • Select an option

  • Save unrealapex/15b85442aa6afcb340112c6a17fcfd1a to your computer and use it in GitHub Desktop.

Select an option

Save unrealapex/15b85442aa6afcb340112c6a17fcfd1a to your computer and use it in GitHub Desktop.
css fade in and out animation
.fade {
animation: fade 2s ease-in infinite;
}
@keyframes fade {
0% {
opacity: 0;
}
25% {
opacity: 0.5;
}
50% {
opacity: 1;
}
75% {
opacity: 0.5;
}
100% {
opacity: 0;
}
}
<div class="fade">loading</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment