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 99e4bc5 commit bc4a6d8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions source/hinge.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@
100% { -ms-transform: translateY(700px); opacity: 0; }
}

@-o-keyframes hinge {
0%, 20%, 40%, 60%, 80% { -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
0% { -o-transform: rotate(0); }
20%, 60% { -o-transform: rotate(80deg); }
40% { -o-transform: rotate(60deg); }
80% { -o-transform: rotate(60deg) translateY(0); opacity: 1; }
100% { -o-transform: translateY(700px); opacity: 0; }
}

@keyframes hinge {
0%, 20%, 40%, 60%, 80% { transform-origin: top left; animation-timing-function: ease-in-out; }
0% { transform: rotate(0); }
Expand Down

0 comments on commit bc4a6d8

Please sign in to comment.