From 9549c7bc3740c14f2504ac84f94c0032dbcf72b7 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:26:48 -0200 Subject: [PATCH] Add Opera support --- source/bounceOutUp.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/source/bounceOutUp.css b/source/bounceOutUp.css index 984cfee..c22eaf3 100644 --- a/source/bounceOutUp.css +++ b/source/bounceOutUp.css @@ -46,6 +46,22 @@ } } +@-o-keyframes bounceOutUp { + 0% { + -o-transform: translateY(0); + } + + 20% { + opacity: 1; + -o-transform: translateY(20px); + } + + 100% { + opacity: 0; + -o-transform: translateY(-2000px); + } +} + @keyframes bounceOutUp { 0% { transform: translateY(0); @@ -66,5 +82,6 @@ -webkit-animation-name: bounceOutUp; -moz-animation-name: bounceOutUp; -ms-animation-name: bounceOutUp; + -o-animation-name: bounceOutUp; animation-name: bounceOutUp; } \ No newline at end of file