Skip to content

Commit

Permalink
Add opera support
Browse files Browse the repository at this point in the history
  • Loading branch information
daneden committed Oct 21, 2011
1 parent 969efa0 commit 5459d91
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions source/rotateOutDownLeft.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
0% {
transform-origin: left bottom;
Expand All @@ -58,5 +72,6 @@
-webkit-animation-name: rotateOutDownLeft;
-moz-animation-name: rotateOutDownLeft;
-ms-animation-name: rotateOutDownLeft;
-o-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}

0 comments on commit 5459d91

Please sign in to comment.