尝试使用 css 旋转图像,但由于某种原因hover
仅适用于 firefox。图像在所有浏览器中旋转,但hover
旋转在 IE 和 chrome 中不起作用
.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); } }