1
試圖用css旋轉圖像,但由於某種原因,hover
只適用於firefox。在所有瀏覽器中的圖像旋轉,但hover
自旋不工作在IE和Chromecss hover只能在firefox中工作
.button img {
position:absolute;
left:500px;
top:300px;
width:70px;
height:70px;
-webkit-animation: rotation 4s infinite linear;
-moz-animation: rotation 4s infinite linear;
animation: rotation 4s infinite linear;
}
.button img:hover{
-webkit-animation: rotation 2s infinite linear;
-moz-animation: rotation 2s infinite linear;
animation: rotation 2s infinite linear;
}
@-moz-keyframes rotation { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes rotation { 100% { -webkit-transform: rotate(360deg); } }
@keyframes rotation { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }