Created
July 9, 2015 13:49
-
-
Save djom202/6d060f43a9dc2532236e to your computer and use it in GitHub Desktop.
Spinner CSS3
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
| .spinner { | |
| width: 40px; | |
| height: 40px; | |
| margin: 50px auto; | |
| background-color: #555; | |
| border-radius: 100%; | |
| -webkit-animation: scaleout 1s infinite ease-in-out; | |
| animation: scaleout 1s infinite ease-in-out; | |
| } | |
| .white_spinner { | |
| background-color:white | |
| } | |
| @-webkit-keyframes scaleout { | |
| from { | |
| -webkit-transform:scale(0.0) | |
| } | |
| 100% { | |
| -webkit-transform:scale(1.0); | |
| opacity:0 | |
| } | |
| } | |
| @keyframes scaleout { | |
| from { | |
| transform:scale(0.0) | |
| } | |
| 100% { | |
| transform:scale(1.0); | |
| opacity:0 | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment