mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-17 17:45:17 +01:00
Add opera support
This commit is contained in:
parent
5341ba4d27
commit
b07f05a748
1 changed files with 13 additions and 0 deletions
|
@ -36,6 +36,18 @@
|
|||
}
|
||||
}
|
||||
|
||||
@-o-keyframes rollOut {
|
||||
0% {
|
||||
opacity: 1;
|
||||
-o-transform: translateX(0px) rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: translateX(100%) rotate(120deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rollOut {
|
||||
0% {
|
||||
opacity: 1;
|
||||
|
@ -52,5 +64,6 @@
|
|||
-webkit-animation-name: rollOut;
|
||||
-moz-animation-name: rollOut;
|
||||
-ms-animation-name: rollOut;
|
||||
-o-animation-name: rollOut;
|
||||
animation-name: rollOut;
|
||||
}
|
Loading…
Reference in a new issue