私はcss3アニメーションを使用してページの読み込み時にアイコンを回転させようとしています。アイコンはChromeとIE 9+にスピンが、私には理解されるFirefoxバージョン44で作業されていない、あなたのhelp.Hereが私のコードです:Css3アニメーションがfirefoxバージョン44で動作していません
<div class="pageloading-mask"><div>
は
.pageloading-mask div {
background: none !important;
width: 20px;
height: 20px;
margin: 50px auto;
position: relative !important;
background: none !important;
}
.pageloading-mask div:before {
content: "LOADING..";
color: #038A3B;
position: absolute;
top: 350px !important;
transform: translateY(-50%) !important;
}
.pageloading-mask div:after {
content: "\e602";
font-family: AlbourneGlyph;
font-size: 80px;
position: absolute;
-webkit-animation: spin 2s infinite ease-in-out;
-moz-animation: spin 2s infinite ease-in-out;
animation: spin 2s infinite ease-in-out;
color: #038A3B;
top: 200px !important;
transform: translateY(-50%) !important;
}
@keyframes spin {
from { transform: scale(1) rotate(0deg); }
to { transform: scale(1) rotate(360deg); }
}
@-webkit-keyframes spin {
from { -webkit-transform: rotate(0deg); }
to { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes spin {
from { -webkit-transform: rotate(0deg); }
to { -webkit-transform: rotate(360deg); }
}
アニメーション宣言をあまりにも追加してくださいすることができますか? –
必要なコードをすべて追加してください:HTML +すべてのCSSが必要です(アニメーション宣言など) –