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 7eda8e5 commit c9cc650
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions source/rotateInUpRight.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,20 @@
}
}

@-o-keyframes rotateInUpRight {
0% {
-o-transform-origin: right bottom;
-o-transform: rotate(-90deg);
opacity: 0;
}

100% {
-o-transform-origin: right bottom;
-o-transform: rotate(0);
opacity: 1;
}
}

@keyframes rotateInUpRight {
0% {
transform-origin: right bottom;
Expand All @@ -58,5 +72,6 @@
-webkit-animation-name: rotateInUpRight;
-moz-animation-name: rotateInUpRight;
-ms-animation-name: rotateInUpRight;
-o-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}

0 comments on commit c9cc650

Please sign in to comment.