1
2
3
4
5
6
7
8
9
10
11
12
13
/*讓表情圖示轉圈圈*/
.emoticon, .emoticon_my
{
-moz-transition-duration:0.5s;
-webkit-transition-duration:0.5s;
-khtml-transition-duration:0.5s;
}
.emoticon:hover, .emoticon_my:hover
{
-moz-transform: rotate(360deg) scale(1.2);
-webkit-transform: rotate(360deg) scale(1.2);
-khtml-transform: rotate(360deg) scale(1.2);
}