2013-06-01

Rotating your plurk profile picture

Usage :
Copy and paste the following css setting to "Customize your profile even more with CSS" in profile setting
.profile-pic{
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);}
}

demo : http://www.plurk.com/ajunlee
ps. It's not working in IE9 and previous versions. IE9 doesn't support animation function of CSS3.

沒有留言:

在Hyper-V上跑ubuntu 22.04 Desktop, 裝完後一登入就凍住

如果你也遇到這情況, 你可以執行以下步驟 按 Ctrl+Alt+F3 進入 virtual console. (按Ctrl+Alt+F1 可以再回到GUI) 登入後執行下面指令 (更新kernel) * sudo add-apt-repository ppa:capp...