From a95540466a6e499ed403fa5d4f04cc27293aeb60 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:01:26 -0200 Subject: [PATCH 1/5] Add Opera support --- source/bounce.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/bounce.css b/source/bounce.css index 02a9822..4e6aaf5 100644 --- a/source/bounce.css +++ b/source/bounce.css @@ -16,6 +16,11 @@ 60% {-ms-transform: translateY(-15px);} } +@-o-keyframes bounce { + 0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);} + 40% {-o-transform: translateY(-30px);} + 60% {-o-transform: translateY(-15px);} +} @keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-30px);} From 35855f23b2db031862d15bee70402dce76553ce0 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:03:51 -0200 Subject: [PATCH 2/5] Add Opera support --- source/bounceIn.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/source/bounceIn.css b/source/bounceIn.css index fa66777..16429d1 100644 --- a/source/bounceIn.css +++ b/source/bounceIn.css @@ -58,6 +58,26 @@ } } +@-o-keyframes bounceIn { + 0% { + opacity: 0; + -o-transform: scale(.3); + } + + 50% { + opacity: 1; + -o-transform: scale(1.05); + } + + 70% { + -o-transform: scale(.9); + } + + 100% { + -o-transform: scale(1); + } +} + @keyframes bounceIn { 0% { opacity: 0; From 1a70219609fcc5815b7ffe384eef85e6f938435f Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:04:30 -0200 Subject: [PATCH 3/5] Add opera support --- source/bounceInDown.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/source/bounceInDown.css b/source/bounceInDown.css index 80ee77b..f724d4d 100644 --- a/source/bounceInDown.css +++ b/source/bounceInDown.css @@ -58,6 +58,26 @@ } } +@-o-keyframes bounceInDown { + 0% { + opacity: 0; + -o-transform: translateY(-2000px); + } + + 60% { + opacity: 1; + -o-transform: translateY(30px); + } + + 80% { + -o-transform: translateY(-10px); + } + + 100% { + -o-transform: translateY(0); + } +} + @keyframes bounceInDown { 0% { opacity: 0; From 60509a87cd5236913beca9b20887b2c7dff437cb Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:05:07 -0200 Subject: [PATCH 4/5] Add Opera support --- source/bounceInLeft.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/source/bounceInLeft.css b/source/bounceInLeft.css index 79ccc12..c5138e3 100644 --- a/source/bounceInLeft.css +++ b/source/bounceInLeft.css @@ -58,6 +58,26 @@ } } +@-o-keyframes bounceInLeft { + 0% { + opacity: 0; + -o-transform: translateX(-2000px); + } + + 60% { + opacity: 1; + -o-transform: translateX(30px); + } + + 80% { + -o-transform: translateX(-10px); + } + + 100% { + -o-transform: translateX(0); + } +} + @keyframes bounceInLeft { 0% { opacity: 0; From aa793bb8abc67c14f0468ddf1f246e5ffaacfe3d Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:07:24 -0200 Subject: [PATCH 5/5] Add Opera support --- source/bounceInRight.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/source/bounceInRight.css b/source/bounceInRight.css index b040368..0610b91 100644 --- a/source/bounceInRight.css +++ b/source/bounceInRight.css @@ -58,6 +58,26 @@ } } +@-o-keyframes bounceInRight { + 0% { + opacity: 0; + -o-transform: translateX(2000px); + } + + 60% { + opacity: 1; + -o-transform: translateX(-30px); + } + + 80% { + -o-transform: translateX(10px); + } + + 100% { + -o-transform: translateX(0); + } +} + @keyframes bounceInRight { 0% { opacity: 0;