mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-13 07:41:08 +01:00
Add Opera support
This commit is contained in:
parent
c45589b8be
commit
d50959e061
1 changed files with 16 additions and 0 deletions
|
@ -46,6 +46,22 @@
|
|||
}
|
||||
}
|
||||
|
||||
@-o-keyframes bounceOutLeft {
|
||||
0% {
|
||||
-o-transform: translateX(0);
|
||||
}
|
||||
|
||||
20% {
|
||||
opacity: 1;
|
||||
-o-transform: translateX(20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: translateX(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes bounceOutLeft {
|
||||
0% {
|
||||
transform: translateX(0);
|
||||
|
|
Loading…
Reference in a new issue