emscripten: Fix loading animation on FireFox

Uses the `-moz-` prefix.
This commit is contained in:
Rob Loach 2016-09-10 02:21:33 -04:00 committed by GitHub
parent c7a3ac673e
commit b4f575099f

View File

@ -30,6 +30,22 @@
-moz-animation: loaded 0.8s ease-in-out;
animation: loaded 0.8s ease-in-out;
}
@keyframes loaded {
from {
opacity: 0.2;
}
to {
opacity: 1;
}
}
@-moz-keyframes loaded {
from {
opacity: 0.2;
}
to {
opacity: 1;
}
}
@-webkit-keyframes loaded {
from {
opacity: 0.2;
@ -38,6 +54,22 @@
opacity: 1;
}
}
@keyframes loading{
from {
opacity: 0.2;
}
to {
opacity: 0.35;
}
}
@-moz-keyframes loading{
from {
opacity: 0.2;
}
to {
opacity: 0.35;
}
}
@-webkit-keyframes loading {
from {
opacity: 0.2;