Copy and paste the following css setting to "Customize your profile even more with CSS" in profile setting
.profile-pic{demo : http://www.plurk.com/ajunlee
border-radius:50%;
-webkit-border-radius:50%;
animation: profileRotate 2s linear infinite;
-webkit-animation: profileRotate 2s linear infinite;
}
@keyframes profileRotate
{
from {
transform:rotate(0deg);
}
to {
transform:rotate(360deg);
}
}
@-webkit-keyframes profileRotate /* Safari and Chrome */
{
from {-webkit-transform:rotate(0deg);}
to {-webkit-transform:rotate(360deg);}
}
ps. It's not working in IE9 and previous versions. IE9 doesn't support animation function of CSS3.