From d35f1d7a4f7bbe29130f73be9fc200021472bc15 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:59:39 -0200 Subject: [PATCH] add opera support --- source/bounceOutdown.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/source/bounceOutdown.css b/source/bounceOutdown.css index 8e41249..973a239 100644 --- a/source/bounceOutdown.css +++ b/source/bounceOutdown.css @@ -46,6 +46,22 @@ } } +@-o-keyframes bounceOutDown { + 0% { + -o-transform: translateY(0); + } + + 20% { + opacity: 1; + -o-transform: translateY(-20px); + } + + 100% { + opacity: 0; + -o-transform: translateY(2000px); + } +} + @keyframes bounceOutDown { 0% { transform: translateY(0); @@ -66,5 +82,6 @@ -webkit-animation-name: bounceOutDown; -moz-animation-name: bounceOutDown; -ms-animation-name: bounceOutDown; + -o-animation-name: bounceOutDown; animation-name: bounceOutDown; } \ No newline at end of file