Skip to content

Instantly share code, notes, and snippets.

@blakazulu
Created November 4, 2020 22:51
Show Gist options
  • Save blakazulu/91a2ea9515d055f5f7712c708210a5de to your computer and use it in GitHub Desktop.
Save blakazulu/91a2ea9515d055f5f7712c708210a5de to your computer and use it in GitHub Desktop.
medium-text-bg-animation rain
@keyframes float-animation {
0% {
bottom: 100vh;
opacity: 0;
}
25% {
opacity: 1;
}
50% {
opacity: 1;
}
75% {
opacity: 0.75;
}
100% {
bottom: 0;
opacity: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment