Skip to content

Instantly share code, notes, and snippets.

@dsaiztc
Created February 2, 2017 17:29
Show Gist options
  • Save dsaiztc/a906be20dc988d469f1cb61935dfc84a to your computer and use it in GitHub Desktop.
Save dsaiztc/a906be20dc988d469f1cb61935dfc84a to your computer and use it in GitHub Desktop.
Spinner icon loading.
/* glyphicon spinning http://stackoverflow.com/a/26283602/3149679 */
.glyphicon.spinning {
animation: spin 1s infinite linear;
-webkit-animation: spin2 1s infinite linear;
}
@keyframes spin {
from { transform: scale(1) rotate(0deg); }
to { transform: scale(1) rotate(360deg); }
}
@-webkit-keyframes spin2 {
from { -webkit-transform: rotate(0deg); }
to { -webkit-transform: rotate(360deg); }
}
<div></div><span class="glyphicon glyphicon-refresh spinning"></span> Loading...</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment