Merge pull request #3555 from RobLoach/patch-6

emscripten: Fix loading animation on FireFox
This commit is contained in:
Twinaphex 2016-09-10 09:21:37 +02:00 committed by GitHub
commit 600b46ac7a

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;