我试图让这段代码在 IE9 和 Firefox 中工作。它在铬中工作得很好
@-webkit-keyframes spin {
from {
transform: rotate(0deg);
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
}
to {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
}
}
#rsSpinner{
-webkit-animation-name: spin;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-webkit-animation-duration: 40s;
}
该代码仅显示 Chrome 的代码,它在那里工作,但我似乎无法让其他前缀集在 IE 和 Firefox 中工作。