SpinKit
Simple loading spinners animated with CSS. See demo. SpinKit only uses (transform
and opacity
) CSS animations to create smooth and easily customizable animations.
Usage
- Add
spinkit.css
orspinkit.min.css
to your project (or copy-paste the CSS that you need for your spinner—there are no dependencies between spinners, no shared classes, and no shared animations, etc, so it should be fairly straight-forward to extract only the code that you need) - Add a spinner to your project by copy-pasting HTML from
spinkit.css
orexamples.html
- Add the
sk-center
utility class to the spinner to center it (it setsmargin
toauto
) - By default, the
width
andheight
of all spinners are set to40px
.background-color
is set to#333
. - Configure the spinner by overwriting the CSS variables, primarily
--sk-size
(spinner width & height) and--sk-color
(spinner color). If you need broader browser support, remove the CSS variables.
You can include SpinKit to your project with bower
:
$ bower install spinkit
or npm:
$ npm install spinkit
Spinners
Given that you have included spinkit.min.css
in your project, these snippets will produce the different spinners:
Plane
Chase
Bounce
Wave
Pulse
Flow
Swing
Circle
Circle Fade
Grid
Fold
Wander
Web browser compatibility
SpinKit uses CSS animations and variables:
- CSS keyframes animations are at +96.5% global support
- CSS variables are at +91.8% global support
Implementing a fallback spinner
How do you know if you need to provide a fallback? You can check for animation support with Modernizr, or manually check for the animation
property, and replace the spinner with a GIF if it's not supported:
{ var elm = document; propertyName = propertyName; if elmstylepropertyName != undefined return true; var propertyNameCapital = propertyName + propertyName domPrefixes = 'Webkit Moz ms O'; for var i = 0; i < domPrefixeslength; i++ if elmstyledomPrefixesi + propertyNameCapital != undefined return true; return false;}
Use it to check for animation
support:
if ! // fallback…