Skip to content

Instantly share code, notes, and snippets.

@unixnexo
Last active August 29, 2024 09:54
Show Gist options
  • Select an option

  • Save unixnexo/67e7a099e78facc3b3c9881c004ab33b to your computer and use it in GitHub Desktop.

Select an option

Save unixnexo/67e7a099e78facc3b3c9881c004ab33b to your computer and use it in GitHub Desktop.
span.ripple {
position: absolute;
border-radius: 50%;
transform: scale(0);
animation: ripple .8s linear;
background-color: rgba(128, 128, 128, 0.533); // put any color, doesn't matter
}
@keyframes ripple {
to {
transform: scale(4);
opacity: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment