Skip to content

Instantly share code, notes, and snippets.

@isu3ru
Created September 28, 2017 21:03
Show Gist options
  • Save isu3ru/68457c4e0a415ca6c86c6038cc49564d to your computer and use it in GitHub Desktop.
Save isu3ru/68457c4e0a415ca6c86c6038cc49564d to your computer and use it in GitHub Desktop.
Rotating ring
.gps_ring {
border: 3px solid #999;
-webkit-border-radius: 30px;
height: 32px;
width: 32px;
display: inline-block;
-webkit-animation: pulsate 1s ease-out;
-webkit-animation-iteration-count: infinite;
opacity: 0.0
}
@-webkit-keyframes pulsate {
0% {
-webkit-transform: scale(0.1, 0.1);
opacity: 0.0;
}
50% {
opacity: 1.0;
}
100% {
-webkit-transform: scale(1.2, 1.2);
opacity: 0.0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment