Skip to content

Commit be2e0d6

Browse files
committed
Merge pull request animate-css#28 from elstgav/master
Added missing Opera keyframes to BounceOutDown
2 parents eb1ff9f + db00a36 commit be2e0d6

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

animate.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2699,6 +2699,22 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
26992699
}
27002700
}
27012701

2702+
@-o-keyframes bounceOutDown {
2703+
0% {
2704+
-o-transform: translateY(0);
2705+
}
2706+
2707+
20% {
2708+
opacity: 1;
2709+
-o-transform: translateY(-20px);
2710+
}
2711+
2712+
100% {
2713+
opacity: 0;
2714+
-o-transform: translateY(2000px);
2715+
}
2716+
}
2717+
27022718
@keyframes bounceOutDown {
27032719
0% {
27042720
transform: translateY(0);
@@ -2719,6 +2735,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
27192735
-webkit-animation-name: bounceOutDown;
27202736
-moz-animation-name: bounceOutDown;
27212737
-ms-animation-name: bounceOutDown;
2738+
-o-animation-name: bounceOutDown;
27222739
animation-name: bounceOutDown;
27232740
}
27242741
@-webkit-keyframes bounceOutLeft {

0 commit comments

Comments
 (0)