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

@-o-keyframes rotateOut {
0% {
-o-transform-origin: center center;
-o-transform: rotate(0);
opacity: 1;
}

100% {
-o-transform-origin: center center;
-o-transform: rotate(200deg);
opacity: 0;
}
}

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

0 comments on commit 969efa0

Please sign in to comment.