Skip to content

Instantly share code, notes, and snippets.

@vishwanatharondekar
Created May 15, 2014 11:00
Show Gist options
  • Save vishwanatharondekar/3446815c5df992fd858c to your computer and use it in GitHub Desktop.
Save vishwanatharondekar/3446815c5df992fd858c to your computer and use it in GitHub Desktop.
This css can be applied to any element and it will revolve circular. CSS3. Can be used for loading page.
.circular{
position: absolute;
top: 0;
left: 0;
-webkit-animation: circleAnim 2s infinite linear;
-moz-animation: circleAnim 2s infinite linear;
-o-animation: circleAnim 2s infinite linear;
-ms-animation: circleAnim 2s infinite linear;
animation: circleAnim 2s infinite linear;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment