Created
February 28, 2014 04:26
-
-
Save cferdinandi/9265244 to your computer and use it in GitHub Desktop.
Simple CSS3 rotation animations.
This file contains 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
/* The class that applies the animation. */ | |
.spinner { | |
display: inline-block; | |
@include prefixer(animation, spin 2s infinite linear, webkit moz ms o spec); | |
} | |
/* The vendor-specific and generic animation keyframes. | |
* These control the direction and nature of the animation. */ | |
@-webkit-keyframes spin { | |
0% { -webkit-transform: rotate(0deg); } | |
100% { -webkit-transform: rotate(360deg); } | |
} | |
@-moz-keyframes spin { | |
0% { -moz-transform: rotate(0deg); } | |
100% { -moz-transform: rotate(360deg); } | |
} | |
@-ms-keyframes spin { | |
0% { -ms-transform: rotate(0deg); } | |
100% { -ms-transform: rotate(360deg); } | |
} | |
@-o-keyframes spin { | |
0% { -o-transform: rotate(0deg); } | |
100% { -o-transform: rotate(360deg); } | |
} | |
@keyframes spin { | |
0% { transform: rotate(0deg); } | |
100% { transform: rotate(360deg); } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment