From b07f05a748ff146bf9a1ab7b21d2ee4ddf21e5fb Mon Sep 17 00:00:00 2001 From: Dan Eden Date: Fri, 21 Oct 2011 09:37:01 +0200 Subject: [PATCH] Add opera support --- source/rollOut.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/source/rollOut.css b/source/rollOut.css index ceb04b2..1d86f19 100644 --- a/source/rollOut.css +++ b/source/rollOut.css @@ -36,6 +36,18 @@ } } +@-o-keyframes rollOut { + 0% { + opacity: 1; + -o-transform: translateX(0px) rotate(0deg); + } + + 100% { + opacity: 0; + -o-transform: translateX(100%) rotate(120deg); + } +} + @keyframes rollOut { 0% { opacity: 1; @@ -52,5 +64,6 @@ -webkit-animation-name: rollOut; -moz-animation-name: rollOut; -ms-animation-name: rollOut; + -o-animation-name: rollOut; animation-name: rollOut; } \ No newline at end of file