我想在 CSS3 浏览器和非 CSS3 浏览器上悬停时动画(翻转)我的 GIF 图像,只需更改背景颜色。
我可以使用代码实现 CSS3 Flip 动画
.imageselector:hover {
-webkit-animation-name: rotate;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
-moz-animation-name: rotate;
-moz-animation-duration: 2s;
-moz-animation-iteration-count: 1;
-moz-animation-timing-function: linear;
}
@-webkit-keyframes rotate {
from {-webkit-transform: rotateX(0deg);}
to {-webkit-transform: rotateX(360deg);}
}
@-moz-keyframes rotate {
from {-moz-transform: rotateX(0deg);}
to {-moz-transform: rotateX(360deg);}
}
和背景变化使用
.imageselector:hover { background:#FFF999; }
我想将两者结合起来,以便在支持 CSS3 的浏览器中它应该只动画,而在非 CSS3 浏览器中它应该只改变背景颜色。