It seems that despite following all the necessary steps in my CSS, I am facing an issue with a transition not working properly in Firefox. The bounce-in effect I have implemented is failing to function as expected in this browser, even though Firefox does support keyframes. Below is a snippet of the relevant code...
.animate {
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-o-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-duration: 1s;
-moz-animation-duration: 1s;
-o-animation-duration: 1s;
animation-duration: 1s;
}
.animate.hinge {
-webkit-animation-duration: 1s;
-moz-animation-duration: 1s;
-o-animation-duration: 1s;
animation-duration: 1s;
}
@-moz-keyframes bounceIn {
/* line 83, ../sass/style.scss */
0% {
opacity: 0;
-webkit-transform: scale(0.3);
}
/* line 86, ../sass/style.scss */
50% {
opacity: 1;
-webkit-transform: scale(1.05);
}
/* line 91, ../sass/style.scss */
70% {
-webkit-transform: scale(0.9);
}
/* line 95, ../sass/style.scss */
100% {
-webkit-transform: scale(1);
}
}
@keyframes bounceIn {
/* line 119, ../sass/style.scss */
0% {
opacity: 0;
transform: scale(0.3);
}
/* line 124, ../sass/style.scss */
50% {
opacity: 1;
transform: scale(1.05);
}
/* line 129, ../sass/style.scss */
70% {
transform: scale(0.9);
}
/* line 133, ../sass/style.scss */
100% {
transform: scale(1);
}
}
/* line 139, ../sass/style.scss */
.block {
-webkit-animation-name: bounceIn;
-moz-animation-name: bounceIn;
-o-animation-name: bounceIn;
animation-name: bounceIn;
}
Could it be possible that I missed a certain prefix or used a property unsupported by Firefox?