Created
February 26, 2015 22:08
-
-
Save iainmcampbell/1d47168eb9a25e7f3e88 to your computer and use it in GitHub Desktop.
SVG Loading Spinner
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
<div class="loader"></div> |
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
/** | |
* Loading spinner | |
*/ | |
@include keyframes(spin) | |
0% | |
transform: rotate(0deg) | |
100% | |
transform: rotate(360deg) | |
.loader | |
background: url(assets/spinner.png) center no-repeat | |
background-size: 60px 60px | |
width: 60px | |
height: 60px | |
animation: spin 1s infinite linear | |
transform-origin: 50% 50% | |
&.centre | |
position: absolute | |
top: 50% | |
left: 50% | |
margin-left: -25px | |
margin-top: -25px |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment