From c9cc6502b31ba2944aeae49690d9084ade8bbe7e Mon Sep 17 00:00:00 2001 From: Dan Eden Date: Fri, 21 Oct 2011 09:39:41 +0200 Subject: [PATCH] Add opera support --- source/rotateInUpRight.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/source/rotateInUpRight.css b/source/rotateInUpRight.css index 377dcb4..93f7598 100644 --- a/source/rotateInUpRight.css +++ b/source/rotateInUpRight.css @@ -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; @@ -58,5 +72,6 @@ -webkit-animation-name: rotateInUpRight; -moz-animation-name: rotateInUpRight; -ms-animation-name: rotateInUpRight; + -o-animation-name: rotateInUpRight; animation-name: rotateInUpRight; } \ No newline at end of file