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