Created
September 14, 2018 13:05
-
-
Save OdearOgy/43c236f6a88855c6ea064973088772b8 to your computer and use it in GitHub Desktop.
circle pulse animation
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
@keyframes circle-beating { | |
0% { | |
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0); | |
-moz-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0); | |
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0); | |
} | |
50% { | |
transition: all .5s linear; | |
-moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, .5); | |
-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, .5); | |
box-shadow: 0 0 0 10px rgba(255, 255, 255, .5); | |
} | |
75% { | |
transition: all .5s linear; | |
-moz-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0); | |
-webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0); | |
box-shadow: 0 0 0 5px rgba(255, 255, 255, 0); | |
} | |
100% { | |
-moz-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0); | |
-webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0); | |
box-shadow: 0 0 0 5px rgba(255, 255, 255, 0); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment