Last active
August 29, 2024 09:54
-
-
Save unixnexo/67e7a099e78facc3b3c9881c004ab33b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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