Add opera support

This commit is contained in:
Dan Eden 2011-10-21 09:41:43 +02:00
parent 1011baa536
commit d77007f35c
1 changed files with 15 additions and 0 deletions

View File

@ -40,6 +40,20 @@
}
}
@-o-keyframes rotateOutUpLeft {
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 rotateOutUpLeft {
0% {
transform-origin: left bottom;
@ -58,5 +72,6 @@
-webkit-animation-name: rotateOutUpLeft;
-moz-animation-name: rotateOutUpLeft;
-ms-animation-name: rotateOutUpLeft;
-o-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}