Merge pull request #28 from elstgav/master

Added missing Opera keyframes to BounceOutDown
This commit is contained in:
Dan Eden 2012-05-18 19:06:54 -07:00
commit be2e0d6643
1 changed files with 17 additions and 0 deletions

17
animate.css vendored
View File

@ -2699,6 +2699,22 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
} }
} }
@-o-keyframes bounceOutDown {
0% {
-o-transform: translateY(0);
}
20% {
opacity: 1;
-o-transform: translateY(-20px);
}
100% {
opacity: 0;
-o-transform: translateY(2000px);
}
}
@keyframes bounceOutDown { @keyframes bounceOutDown {
0% { 0% {
transform: translateY(0); transform: translateY(0);
@ -2719,6 +2735,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
-webkit-animation-name: bounceOutDown; -webkit-animation-name: bounceOutDown;
-moz-animation-name: bounceOutDown; -moz-animation-name: bounceOutDown;
-ms-animation-name: bounceOutDown; -ms-animation-name: bounceOutDown;
-o-animation-name: bounceOutDown;
animation-name: bounceOutDown; animation-name: bounceOutDown;
} }
@-webkit-keyframes bounceOutLeft { @-webkit-keyframes bounceOutLeft {