Skip to content

Instantly share code, notes, and snippets.

@OdearOgy
Created September 14, 2018 13:05
Show Gist options
  • Save OdearOgy/43c236f6a88855c6ea064973088772b8 to your computer and use it in GitHub Desktop.
Save OdearOgy/43c236f6a88855c6ea064973088772b8 to your computer and use it in GitHub Desktop.
circle pulse animation
@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