web-kit-animation
by satantx
HTML
<div class="icon" style="background-image: url(https://twimg0-a.akamaihd.net/profile_images/2360273406/t4z72m8fub2ni7fljrl5_normal.jpeg);"></div>
CSS
body {margin: 50px;}
.icon { float: left; width: 50px; height: 50px; border-radius: 25px;}
.icon {
-webkit-animation: icon_translate 2s infinite linear both;
}
@-webkit-keyframes icon_translate {
100% { -webkit-transform: rotate(360deg); }
}