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
969efa017a
commit
5459d91c41
1 changed files with 15 additions and 0 deletions
|
@ -40,6 +40,20 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@-o-keyframes rotateOutDownLeft {
|
||||||
|
0% {
|
||||||
|
-o-transform-origin: left bottom;
|
||||||
|
-o-transform: rotate(0);
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
-o-transform-origin: left bottom;
|
||||||
|
-o-transform: rotate(90deg);
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes rotateOutDownLeft {
|
@keyframes rotateOutDownLeft {
|
||||||
0% {
|
0% {
|
||||||
transform-origin: left bottom;
|
transform-origin: left bottom;
|
||||||
|
@ -58,5 +72,6 @@
|
||||||
-webkit-animation-name: rotateOutDownLeft;
|
-webkit-animation-name: rotateOutDownLeft;
|
||||||
-moz-animation-name: rotateOutDownLeft;
|
-moz-animation-name: rotateOutDownLeft;
|
||||||
-ms-animation-name: rotateOutDownLeft;
|
-ms-animation-name: rotateOutDownLeft;
|
||||||
|
-o-animation-name: rotateOutDownLeft;
|
||||||
animation-name: rotateOutDownLeft;
|
animation-name: rotateOutDownLeft;
|
||||||
}
|
}
|
Loading…
Reference in a new issue