Created
July 26, 2020 11:22
-
-
Save Ashkanph/5688b42f567fffb2a2c9c421c41f88b6 to your computer and use it in GitHub Desktop.
pulsing border css (beating)
This file contains 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
.circle { | |
width: 35px; | |
height: 35px; | |
border-radius: 50%; | |
box-shadow: 0px 0px 1px 1px #0000001a; | |
} | |
.pulse { | |
animation: pulse-animation 2s infinite; | |
} | |
@keyframes pulse-animation { | |
0% { | |
box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); | |
} | |
100% { | |
box-shadow: 0 0 0 20px rgba(0, 0, 0, 0); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment