0
Im旋轉這個div的文本,並想知道如何可能緩慢地旋轉文本,一旦部分旋轉和鼠標從div移動。如何在部分旋轉後「旋轉」div?
我不能將鼠標移動到div上,因爲它不知道哪個div將被移動到。
示例如下。
.reblogbutton{
position:relative;
display:table;
color:black;
width:60px;
height:60px;
border-radius:32px;
border: solid 2.5px black;
text-align:center;
margin:auto;
top:2.5px;
background-color:#B19CD9;
}
.reblogbutton a{
display:table-cell;
color:black;
vertical-align:middle;
}
.reblogbutton a:hover{
transform:rotate(360deg);
-o-transform:rotate(360deg);
-moz-transform:rotate(360deg);
-webbkit-transform:rotate(360deg);
transition: all 1.2s ease;
-webkit-transition: all 1.2s ease;
-moz-transition: all 1.2s ease;
-o-transition: all 1.2s ease;
}