Created
November 14, 2013 15:07
-
-
Save michiel/7468380 to your computer and use it in GitHub Desktop.
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
.ring { | |
width: 300px; | |
height: 300px; | |
border-radius: 50%; | |
position: absolute; | |
background-color: transparent; | |
border: 15px gray solid; | |
-webkit-animation-name: ani; | |
-webkit-animation-iteration-count: infinite; | |
-webkit-animation-timing-function: ease; | |
-webkit-animation-duration: 6s; | |
-webkit-animation-direction: reverse; | |
} | |
@-webkit-keyframes ani { | |
0% {-webkit-transform: scale(1); opacity: 0;} | |
10% {-webkit-transform: scale(1); opacity: 1;} | |
99.9% {-webkit-transform: scale(0.1); opacity: 1} | |
100% {-webkit-transform: scale(0.1); opacity: 0} | |
} | |
#r2 { -webkit-animation-delay: 1s;} | |
#r3 { -webkit-animation-delay: 2s;} | |
#r4 { -webkit-animation-delay: 3s;} | |
#r5 { -webkit-animation-delay: 4s;} | |
#r6 { -webkit-animation-delay: 5s;} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment