Added missing animations for FireFox

This commit is contained in:
Tobias Reich 2014-03-16 21:09:54 +01:00
parent 7d1da4d944
commit 72e40a6c6e
2 changed files with 9 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -74,9 +74,11 @@
} }
@-moz-keyframes moveUp { @-moz-keyframes moveUp {
0% { 0% {
-moz-transform: translateY(100px);
opacity: 0; opacity: 0;
} }
100% { 100% {
-moz-transform: translateY(0px);
opacity: 1; opacity: 1;
} }
} }
@ -183,9 +185,11 @@
@-moz-keyframes zoomIn { @-moz-keyframes zoomIn {
0% { 0% {
opacity: 0; opacity: 0;
-moz-transform: scale(.8);
} }
100% { 100% {
opacity: 1; opacity: 1;
-moz-transform: scale(1);
} }
} }
@keyframes zoomIn { @keyframes zoomIn {
@ -213,9 +217,11 @@
@-moz-keyframes zoomOut { @-moz-keyframes zoomOut {
0% { 0% {
opacity: 1; opacity: 1;
-moz-transform: scale(1);
} }
100% { 100% {
opacity: 0; opacity: 0;
-moz-transform: scale(.8);
} }
} }
@keyframes zoomOut { @keyframes zoomOut {
@ -278,7 +284,7 @@
opacity: 1; opacity: 1;
} }
50% { 50% {
opacity: 0.8; opacity: 0.3;
} }
100% { 100% {
opacity: 1; opacity: 1;
@ -289,7 +295,7 @@
opacity: 1; opacity: 1;
} }
50% { 50% {
opacity: 0.8; opacity: 0.3;
} }
100% { 100% {
opacity: 1; opacity: 1;