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
aa793bb8ab
commit
f1faa61e87
1 changed files with 21 additions and 0 deletions
|
@ -55,6 +55,27 @@
|
|||
-ms-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-o-keyframes bounceInUp {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(2000px);
|
||||
}
|
||||
|
||||
60% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(-30px);
|
||||
}
|
||||
|
||||
80% {
|
||||
-o-transform: translateY(10px);
|
||||
}
|
||||
|
||||
100% {
|
||||
-o-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes bounceInUp {
|
||||
0% {
|
||||
opacity: 0;
|
||||
|
|
Loading…
Reference in a new issue