Skip to content

Instantly share code, notes, and snippets.

@mihneawalker
Created April 1, 2015 00:01
Show Gist options
  • Save mihneawalker/f8d7a88473e0a8cc5d39 to your computer and use it in GitHub Desktop.
Save mihneawalker/f8d7a88473e0a8cc5d39 to your computer and use it in GitHub Desktop.
1 aprilie
<style type="text/css">
/* Dă necenzurat, sub licenta WTFPL */
img {
-webkit-animation:spin 10s linear infinite;
-moz-animation:spin 10s linear infinite;
animation:spin 10s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment