Created
September 28, 2017 21:03
-
-
Save isu3ru/68457c4e0a415ca6c86c6038cc49564d to your computer and use it in GitHub Desktop.
Rotating ring
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
| .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