Skip to content

Commit

Permalink
Added Missing Opera Animation
Browse files Browse the repository at this point in the history
bounceOutDown was missing Opera keyframes
  • Loading branch information
elstgav committed May 18, 2012
1 parent eb1ff9f commit db00a36
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions animate.css
Expand Up @@ -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 {
0% {
transform: translateY(0);
Expand All @@ -2719,6 +2735,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
-webkit-animation-name: bounceOutDown;
-moz-animation-name: bounceOutDown;
-ms-animation-name: bounceOutDown;
-o-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
Expand Down

0 comments on commit db00a36

Please sign in to comment.