mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-13 07:41:08 +01:00
Merge pull request #28 from elstgav/master
Added missing Opera keyframes to BounceOutDown
This commit is contained in:
commit
be2e0d6643
1 changed files with 17 additions and 0 deletions
17
animate.css
vendored
17
animate.css
vendored
|
@ -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);
|
||||
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue