From f1faa61e87abbf2ea8656d33aa22720f7beee4ae Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:18:51 -0200 Subject: [PATCH 01/37] Add Opera support --- source/bounceInUp.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/source/bounceInUp.css b/source/bounceInUp.css index f51beda..2fb6ead 100644 --- a/source/bounceInUp.css +++ b/source/bounceInUp.css @@ -55,6 +55,27 @@ -ms-transform: translateY(0); } } + +@-o-keyframes bounceInUp { + 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 bounceInUp { 0% { opacity: 0; From 1d9b65f9f39948dd91e66969615c7282b4d3d319 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:20:41 -0200 Subject: [PATCH 02/37] Add Opera support --- source/bounceOut.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/source/bounceOut.css b/source/bounceOut.css index 5242d1a..679a1c7 100644 --- a/source/bounceOut.css +++ b/source/bounceOut.css @@ -58,6 +58,26 @@ } } +@-o-keyframes bounceOut { + 0% { + -o-transform: scale(1); + } + + 25% { + -o-transform: scale(.95); + } + + 50% { + opacity: 1; + -o-transform: scale(1.1); + } + + 100% { + opacity: 0; + -o-transform: scale(.3); + } +} + @keyframes bounceOut { 0% { transform: scale(1); From c45589b8be88c158530e65e36872edddc06480f5 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:21:28 -0200 Subject: [PATCH 03/37] Add Opera support --- source/bounceOut.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/source/bounceOut.css b/source/bounceOut.css index 679a1c7..9337e25 100644 --- a/source/bounceOut.css +++ b/source/bounceOut.css @@ -78,6 +78,26 @@ } } +@-o-keyframes bounceOut { + 0% { + -o-transform: scale(1); + } + + 25% { + -o-transform: scale(.95); + } + + 50% { + opacity: 1; + -o-transform: scale(1.1); + } + + 100% { + opacity: 0; + -o-transform: scale(.3); + } +} + @keyframes bounceOut { 0% { transform: scale(1); From d50959e0613bff9ffaeb62c9333629e2bcb4899c Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:22:03 -0200 Subject: [PATCH 04/37] Add Opera support --- source/bounceOutLeft.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/source/bounceOutLeft.css b/source/bounceOutLeft.css index 98bf23a..2587e2d 100644 --- a/source/bounceOutLeft.css +++ b/source/bounceOutLeft.css @@ -46,6 +46,22 @@ } } +@-o-keyframes bounceOutLeft { + 0% { + -o-transform: translateX(0); + } + + 20% { + opacity: 1; + -o-transform: translateX(20px); + } + + 100% { + opacity: 0; + -o-transform: translateX(-2000px); + } +} + @keyframes bounceOutLeft { 0% { transform: translateX(0); From f274bf12dac28b3b69bf05dbabeb25a03d060edd Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:22:46 -0200 Subject: [PATCH 05/37] Add Opera support --- source/bounceOutRight.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/source/bounceOutRight.css b/source/bounceOutRight.css index 2eb2992..9480b1c 100644 --- a/source/bounceOutRight.css +++ b/source/bounceOutRight.css @@ -46,6 +46,22 @@ } } +@-o-keyframes bounceOutRight { + 0% { + -o-transform: translateX(0); + } + + 20% { + opacity: 1; + -o-transform: translateX(-20px); + } + + 100% { + opacity: 0; + -o-transform: translateX(2000px); + } +} + @keyframes bounceOutRight { 0% { transform: translateX(0); From 9549c7bc3740c14f2504ac84f94c0032dbcf72b7 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:26:48 -0200 Subject: [PATCH 06/37] 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 From 807e2b27f683acf97631f8c4672150d4a324ecfd Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:27:24 -0200 Subject: [PATCH 07/37] Add in class --- source/bounceOutRight.css | 1 + 1 file changed, 1 insertion(+) diff --git a/source/bounceOutRight.css b/source/bounceOutRight.css index 9480b1c..e58528e 100644 --- a/source/bounceOutRight.css +++ b/source/bounceOutRight.css @@ -82,5 +82,6 @@ -webkit-animation-name: bounceOutRight; -moz-animation-name: bounceOutRight; -ms-animation-name: bounceOutRight; + -o-animation-name: bounceOutRight; animation-name: bounceOutRight; } \ No newline at end of file From 78c34282781cfa0eb48b0189278e1256f1734007 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:37:03 -0200 Subject: [PATCH 08/37] Add in class --- source/bounceOutLeft.css | 1 + 1 file changed, 1 insertion(+) diff --git a/source/bounceOutLeft.css b/source/bounceOutLeft.css index 2587e2d..64d2e9b 100644 --- a/source/bounceOutLeft.css +++ b/source/bounceOutLeft.css @@ -82,5 +82,6 @@ -webkit-animation-name: bounceOutLeft; -moz-animation-name: bounceOutLeft; -ms-animation-name: bounceOutLeft; + -o-animation-name: bounceOutLeft; animation-name: bounceOutLeft; } \ No newline at end of file From 14baa928e1f9cb790fc0e815b63c9623d595af83 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:38:54 -0200 Subject: [PATCH 09/37] Add in class --- source/bounceOut.css | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/source/bounceOut.css b/source/bounceOut.css index 9337e25..b468789 100644 --- a/source/bounceOut.css +++ b/source/bounceOut.css @@ -78,26 +78,6 @@ } } -@-o-keyframes bounceOut { - 0% { - -o-transform: scale(1); - } - - 25% { - -o-transform: scale(.95); - } - - 50% { - opacity: 1; - -o-transform: scale(1.1); - } - - 100% { - opacity: 0; - -o-transform: scale(.3); - } -} - @keyframes bounceOut { 0% { transform: scale(1); @@ -122,5 +102,6 @@ -webkit-animation-name: bounceOut; -moz-animation-name: bounceOut; -ms-animation-name: bounceOut; + -o-animation-name: bounceOut; animation-name: bounceOut; } \ No newline at end of file From bd9e726741eabe9230f5e690aebd591c0dc95ba6 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:39:31 -0200 Subject: [PATCH 10/37] Add in class --- source/bounceInUp.css | 1 + 1 file changed, 1 insertion(+) diff --git a/source/bounceInUp.css b/source/bounceInUp.css index 2fb6ead..0cc1c29 100644 --- a/source/bounceInUp.css +++ b/source/bounceInUp.css @@ -100,5 +100,6 @@ -webkit-animation-name: bounceInUp; -moz-animation-name: bounceInUp; -ms-animation-name: bounceInUp; + -o-animation-name: bounceInUp; animation-name: bounceInUp; } \ No newline at end of file From 978575cf9c5e0b6a06a77db931163cd1168ff18d Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:40:27 -0200 Subject: [PATCH 11/37] Add in class --- source/bounceInRight.css | 1 + 1 file changed, 1 insertion(+) diff --git a/source/bounceInRight.css b/source/bounceInRight.css index 0610b91..de0051b 100644 --- a/source/bounceInRight.css +++ b/source/bounceInRight.css @@ -102,5 +102,6 @@ -webkit-animation-name: bounceInRight; -moz-animation-name: bounceInRight; -ms-animation-name: bounceInRight; + -o-animation-name: bounceInRight; animation-name: bounceInRight; } \ No newline at end of file From 3929952a486aabb9deeeb375cf9d526e73284dd4 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:53:42 -0200 Subject: [PATCH 12/37] Add in class --- source/bounceInLeft.css | 1 + 1 file changed, 1 insertion(+) diff --git a/source/bounceInLeft.css b/source/bounceInLeft.css index c5138e3..4d27341 100644 --- a/source/bounceInLeft.css +++ b/source/bounceInLeft.css @@ -102,5 +102,6 @@ -webkit-animation-name: bounceInLeft; -moz-animation-name: bounceInLeft; -ms-animation-name: bounceInLeft; + -o-animation-name: bounceInLeft; animation-name: bounceInLeft; } \ No newline at end of file From 97526f8ed439e6f1642eb62359f9af025b84c4b6 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:57:58 -0200 Subject: [PATCH 13/37] add in class --- source/bounceInDown.css | 1 + 1 file changed, 1 insertion(+) diff --git a/source/bounceInDown.css b/source/bounceInDown.css index f724d4d..509703c 100644 --- a/source/bounceInDown.css +++ b/source/bounceInDown.css @@ -102,5 +102,6 @@ -webkit-animation-name: bounceInDown; -moz-animation-name: bounceInDown; -ms-animation-name: bounceInDown; + -o-animation-name: bounceInDown; animation-name: bounceInDown; } \ No newline at end of file From cdecf0aff9398a0d0ad5ef0fceb298cc313dafcc Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:58:23 -0200 Subject: [PATCH 14/37] Add in class --- source/bounceIn.css | 1 + 1 file changed, 1 insertion(+) diff --git a/source/bounceIn.css b/source/bounceIn.css index 16429d1..d5f6c7b 100644 --- a/source/bounceIn.css +++ b/source/bounceIn.css @@ -102,5 +102,6 @@ -webkit-animation-name: bounceIn; -moz-animation-name: bounceIn; -ms-animation-name: bounceIn; + -o-animation-name: bounceIn; animation-name: bounceIn; } \ No newline at end of file From bbc35ee74b173d460b3e7441004c31ec51b76198 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:58:52 -0200 Subject: [PATCH 15/37] add in class --- source/bounce.css | 1 + 1 file changed, 1 insertion(+) diff --git a/source/bounce.css b/source/bounce.css index 4e6aaf5..5075dac 100644 --- a/source/bounce.css +++ b/source/bounce.css @@ -31,5 +31,6 @@ -webkit-animation-name: bounce; -moz-animation-name: bounce; -ms-animation-name: bounce; + -o-animation-name: bounce; animation-name: bounce; } \ No newline at end of file From d35f1d7a4f7bbe29130f73be9fc200021472bc15 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 16:59:39 -0200 Subject: [PATCH 16/37] 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 From 4981bf7ee0060a8f4ae20899a1492554c707667b Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:02:36 -0200 Subject: [PATCH 17/37] Add opera support --- source/fadeIn.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/fadeIn.css b/source/fadeIn.css index 28c78cc..320474f 100644 --- a/source/fadeIn.css +++ b/source/fadeIn.css @@ -13,6 +13,11 @@ 100% {opacity: 1;} } +@-o-keyframes fadeIn { + 0% {opacity: 0;} + 100% {opacity: 1;} +} + @keyframes fadeIn { 0% {opacity: 0;} 100% {opacity: 1;} @@ -22,5 +27,6 @@ -webkit-animation-name: fadeIn; -moz-animation-name: fadeIn; -ms-animation-name: fadeIn; + -o-animation-name: fadeIn; animation-name: fadeIn; } \ No newline at end of file From 013cebf3814abcef3eeb7ced9374b416a839c0f8 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:03:39 -0200 Subject: [PATCH 18/37] add opera support --- source/fadeInDown.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/source/fadeInDown.css b/source/fadeInDown.css index 0a44fd5..c166ba0 100644 --- a/source/fadeInDown.css +++ b/source/fadeInDown.css @@ -34,6 +34,18 @@ } } +@-o-keyframes fadeInDown { + 0% { + opacity: 0; + -ms-transform: translateY(-20px); + } + + 100% { + opacity: 1; + -ms-transform: translateY(0); + } +} + @keyframes fadeInDown { 0% { opacity: 0; @@ -50,5 +62,6 @@ -webkit-animation-name: fadeInDown; -moz-animation-name: fadeInDown; -ms-animation-name: fadeInDown; + -o-animation-name: fadeInDown; animation-name: fadeInDown; } \ No newline at end of file From 6a133d5475e99b6dedecdcd840a9eccdd7ef4cc9 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:04:11 -0200 Subject: [PATCH 19/37] add opera support --- source/fadeInDownBig.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/source/fadeInDownBig.css b/source/fadeInDownBig.css index dcd7655..6338b3a 100644 --- a/source/fadeInDownBig.css +++ b/source/fadeInDownBig.css @@ -34,6 +34,18 @@ } } +@-o-keyframes fadeInDownBig { + 0% { + opacity: 0; + -o-transform: translateY(-2000px); + } + + 100% { + opacity: 1; + -o-transform: translateY(0); + } +} + @keyframes fadeInDownBig { 0% { opacity: 0; @@ -50,5 +62,6 @@ -webkit-animation-name: fadeInDownBig; -moz-animation-name: fadeInDownBig; -ms-animation-name: fadeInDownBig; + -o-animation-name: fadeInDownBig; animation-name: fadeInDownBig; } \ No newline at end of file From f24276748756abd87853c47c32494fe28c58b19d Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:04:59 -0200 Subject: [PATCH 20/37] add opera support --- source/fadeInLeft.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/source/fadeInLeft.css b/source/fadeInLeft.css index df1fae7..c893d13 100644 --- a/source/fadeInLeft.css +++ b/source/fadeInLeft.css @@ -34,6 +34,18 @@ } } +@-o-keyframes fadeInLeft { + 0% { + opacity: 0; + -o-transform: translateX(-20px); + } + + 100% { + opacity: 1; + -o-transform: translateX(0); + } +} + @keyframes fadeInLeft { 0% { opacity: 0; @@ -50,5 +62,6 @@ -webkit-animation-name: fadeInLeft; -moz-animation-name: fadeInLeft; -ms-animation-name: fadeInLeft; + -o-animation-name: fadeInLeft; animation-name: fadeInLeft; } \ No newline at end of file From 6107e98bd698f1f9cfe4779d9b2c7b9b27355f64 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:05:49 -0200 Subject: [PATCH 21/37] add opera support --- source/fadeInLeftBig.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/source/fadeInLeftBig.css b/source/fadeInLeftBig.css index 7fff5c6..2dd44f1 100644 --- a/source/fadeInLeftBig.css +++ b/source/fadeInLeftBig.css @@ -31,6 +31,17 @@ -ms-transform: translateX(0); } } +@-o-keyframes fadeInLeftBig { + 0% { + opacity: 0; + -o-transform: translateX(-2000px); + } + + 100% { + opacity: 1; + -o-transform: translateX(0); + } +} @keyframes fadeInLeftBig { 0% { opacity: 0; @@ -47,5 +58,6 @@ -webkit-animation-name: fadeInLeftBig; -moz-animation-name: fadeInLeftBig; -ms-animation-name: fadeInLeftBig; + -o-animation-name: fadeInLeftBig; animation-name: fadeInLeftBig; } \ No newline at end of file From 039dc7438865930b67270cf6fd8befa2af3ed882 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:09:56 -0200 Subject: [PATCH 22/37] add opera support --- source/fadeInRight.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/source/fadeInRight.css b/source/fadeInRight.css index be6e83f..57835b4 100644 --- a/source/fadeInRight.css +++ b/source/fadeInRight.css @@ -34,6 +34,18 @@ } } +@-o-keyframes fadeInRight { + 0% { + opacity: 0; + -o-transform: translateX(20px); + } + + 100% { + opacity: 1; + -o-transform: translateX(0); + } +} + @keyframes fadeInRight { 0% { opacity: 0; @@ -50,5 +62,6 @@ -webkit-animation-name: fadeInRight; -moz-animation-name: fadeInRight; -ms-animation-name: fadeInRight; + -o-animation-name: fadeInRight; animation-name: fadeInRight; } \ No newline at end of file From 640f132020a7b955f8f4ecfa27356368daf12944 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:10:31 -0200 Subject: [PATCH 23/37] add opera support --- source/fadeInRightBig.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/source/fadeInRightBig.css b/source/fadeInRightBig.css index 9746f16..1e11510 100644 --- a/source/fadeInRightBig.css +++ b/source/fadeInRightBig.css @@ -34,6 +34,18 @@ } } +@-o-keyframes fadeInRightBig { + 0% { + opacity: 0; + -o-transform: translateX(2000px); + } + + 100% { + opacity: 1; + -o-transform: translateX(0); + } +} + @keyframes fadeInRightBig { 0% { opacity: 0; From 7deda693f784936b58ec2ce5e3b386e7f8052fb4 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:11:02 -0200 Subject: [PATCH 24/37] add opera support --- source/fadeInUp.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/source/fadeInUp.css b/source/fadeInUp.css index 3d14bc5..d1be1dd 100644 --- a/source/fadeInUp.css +++ b/source/fadeInUp.css @@ -34,6 +34,18 @@ } } +@-o-keyframes fadeInUp { + 0% { + opacity: 0; + -o-transform: translateY(20px); + } + + 100% { + opacity: 1; + -o-transform: translateY(0); + } +} + @keyframes fadeInUp { 0% { opacity: 0; @@ -50,5 +62,6 @@ -webkit-animation-name: fadeInUp; -moz-animation-name: fadeInUp; -ms-animation-name: fadeInUp; + -o-animation-name: fadeInUp; animation-name: fadeInUp; } \ No newline at end of file From a5ac2688bd2c262bb40aa96c0391b6843372afc1 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:12:25 -0200 Subject: [PATCH 25/37] add in class --- source/fadeInRightBig.css | 1 + 1 file changed, 1 insertion(+) diff --git a/source/fadeInRightBig.css b/source/fadeInRightBig.css index 1e11510..a72895d 100644 --- a/source/fadeInRightBig.css +++ b/source/fadeInRightBig.css @@ -62,5 +62,6 @@ -webkit-animation-name: fadeInRightBig; -moz-animation-name: fadeInRightBig; -ms-animation-name: fadeInRightBig; + -o-animation-name: fadeInRightBig; animation-name: fadeInRightBig; } \ No newline at end of file From a42eda01eaabdd465d5e6f5a2e4c480f1cc0b60f Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:13:03 -0200 Subject: [PATCH 26/37] add opera support --- source/fadeInUpBig.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/source/fadeInUpBig.css b/source/fadeInUpBig.css index 3c6b1e8..951848c 100644 --- a/source/fadeInUpBig.css +++ b/source/fadeInUpBig.css @@ -34,6 +34,18 @@ } } +@-o-keyframes fadeInUpBig { + 0% { + opacity: 0; + -o-transform: translateY(2000px); + } + + 100% { + opacity: 1; + -o-transform: translateY(0); + } +} + @keyframes fadeInUpBig { 0% { opacity: 0; @@ -50,5 +62,6 @@ -webkit-animation-name: fadeInUpBig; -moz-animation-name: fadeInUpBig; -ms-animation-name: fadeInUpBig; + -o-animation-name: fadeInUpBig; animation-name: fadeInUpBig; } \ No newline at end of file From d24a581c3980b21e9a6e60e87f5b2ec81dd145cf Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:14:38 -0200 Subject: [PATCH 27/37] add opera support --- source/fadeOut.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/fadeOut.css b/source/fadeOut.css index 0a096f9..94c28bb 100644 --- a/source/fadeOut.css +++ b/source/fadeOut.css @@ -13,6 +13,11 @@ 100% {opacity: 0;} } +@-o-keyframes fadeOut { + 0% {opacity: 1;} + 100% {opacity: 0;} +} + @keyframes fadeOut { 0% {opacity: 1;} 100% {opacity: 0;} @@ -22,5 +27,6 @@ -webkit-animation-name: fadeOut; -moz-animation-name: fadeOut; -ms-animation-name: fadeOut; + -o-animation-name: fadeOut; animation-name: fadeOut; } \ No newline at end of file From 891b2cf981b54a289095493a97e23f6681316de1 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:15:08 -0200 Subject: [PATCH 28/37] add opera support --- source/fadeOutDown.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/source/fadeOutDown.css b/source/fadeOutDown.css index 2c36b81..03e790d 100644 --- a/source/fadeOutDown.css +++ b/source/fadeOutDown.css @@ -34,6 +34,18 @@ } } +@-o-keyframes fadeOutDown { + 0% { + opacity: 1; + -o-transform: translateY(0); + } + + 100% { + opacity: 0; + -o-transform: translateY(20px); + } +} + @keyframes fadeOutDown { 0% { opacity: 1; @@ -50,5 +62,6 @@ -webkit-animation-name: fadeOutDown; -moz-animation-name: fadeOutDown; -ms-animation-name: fadeOutDown; + -o-animation-name: fadeOutDown; animation-name: fadeOutDown; } \ No newline at end of file From 0f36083c40da00265a51b636fbef703a36c0c553 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:16:20 -0200 Subject: [PATCH 29/37] add opera support --- source/fadeOutDownBig.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/source/fadeOutDownBig.css b/source/fadeOutDownBig.css index 8287281..c020989 100644 --- a/source/fadeOutDownBig.css +++ b/source/fadeOutDownBig.css @@ -34,6 +34,18 @@ } } +@-o-keyframes fadeOutDownBig { + 0% { + opacity: 1; + -o-transform: translateY(0); + } + + 100% { + opacity: 0; + -o-transform: translateY(2000px); + } +} + @keyframes fadeOutDownBig { 0% { opacity: 1; @@ -50,5 +62,6 @@ -webkit-animation-name: fadeOutDownBig; -moz-animation-name: fadeOutDownBig; -ms-animation-name: fadeOutDownBig; + -o-animation-name: fadeOutDownBig; animation-name: fadeOutDownBig; } \ No newline at end of file From e5a833b657add04b37a62bda2d6046a630dc3841 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:16:58 -0200 Subject: [PATCH 30/37] add opera support --- source/fadeOutLeft.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/source/fadeOutLeft.css b/source/fadeOutLeft.css index 3b0aadb..ec40afd 100644 --- a/source/fadeOutLeft.css +++ b/source/fadeOutLeft.css @@ -33,6 +33,19 @@ -ms-transform: translateX(-20px); } } + +@-o-keyframes fadeOutLeft { + 0% { + opacity: 1; + -o-transform: translateX(0); + } + + 100% { + opacity: 0; + -o-transform: translateX(-20px); + } +} + @keyframes fadeOutLeft { 0% { opacity: 1; @@ -49,5 +62,6 @@ -webkit-animation-name: fadeOutLeft; -moz-animation-name: fadeOutLeft; -ms-animation-name: fadeOutLeft; + -o-animation-name: fadeOutLeft; animation-name: fadeOutLeft; } \ No newline at end of file From 480edb81ac11db3fc775740edb8ac319b1ddaa96 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:18:51 -0200 Subject: [PATCH 31/37] add opera support --- source/fadeOutLeftBig.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/source/fadeOutLeftBig.css b/source/fadeOutLeftBig.css index b0fdbd3..c6e17d6 100644 --- a/source/fadeOutLeftBig.css +++ b/source/fadeOutLeftBig.css @@ -34,6 +34,18 @@ } } +@-o-keyframes fadeOutLeftBig { + 0% { + opacity: 1; + -o-transform: translateX(0); + } + + 100% { + opacity: 0; + -o-transform: translateX(-2000px); + } +} + @keyframes fadeOutLeftBig { 0% { opacity: 1; @@ -50,5 +62,6 @@ -webkit-animation-name: fadeOutLeftBig; -moz-animation-name: fadeOutLeftBig; -ms-animation-name: fadeOutLeftBig; + -o-animation-name: fadeOutLeftBig; animation-name: fadeOutLeftBig; } \ No newline at end of file From 4aa892098e114986ab31ab018933fa76f015a9cb Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:19:54 -0200 Subject: [PATCH 32/37] add opera support --- source/fadeOutRight.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/source/fadeOutRight.css b/source/fadeOutRight.css index bc21c4f..9c408e0 100644 --- a/source/fadeOutRight.css +++ b/source/fadeOutRight.css @@ -34,6 +34,18 @@ } } +@-o-keyframes fadeOutRight { + 0% { + opacity: 1; + -o-transform: translateX(0); + } + + 100% { + opacity: 0; + -o-transform: translateX(20px); + } +} + @keyframes fadeOutRight { 0% { opacity: 1; From 9738cc6402006ff0264411707511e917d4ed660d Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:20:30 -0200 Subject: [PATCH 33/37] add in class --- source/fadeOutRight.css | 1 + 1 file changed, 1 insertion(+) diff --git a/source/fadeOutRight.css b/source/fadeOutRight.css index 9c408e0..a4883bc 100644 --- a/source/fadeOutRight.css +++ b/source/fadeOutRight.css @@ -62,5 +62,6 @@ -webkit-animation-name: fadeOutRight; -moz-animation-name: fadeOutRight; -ms-animation-name: fadeOutRight; + -o-animation-name: fadeOutRight; animation-name: fadeOutRight; } \ No newline at end of file From eea980f83d6a20dbfd1397add4b8d04274356be3 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:21:16 -0200 Subject: [PATCH 34/37] add opera support --- source/fadeOutRightBig.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/source/fadeOutRightBig.css b/source/fadeOutRightBig.css index 8230325..83d785f 100644 --- a/source/fadeOutRightBig.css +++ b/source/fadeOutRightBig.css @@ -31,6 +31,17 @@ -ms-transform: translateX(2000px); } } +@-o-keyframes fadeOutRightBig { + 0% { + opacity: 1; + -o-transform: translateX(0); + } + + 100% { + opacity: 0; + -o-transform: translateX(2000px); + } +} @keyframes fadeOutRightBig { 0% { opacity: 1; @@ -47,5 +58,6 @@ -webkit-animation-name: fadeOutRightBig; -moz-animation-name: fadeOutRightBig; -ms-animation-name: fadeOutRightBig; + -o-animation-name: fadeOutRightBig; animation-name: fadeOutRightBig; } \ No newline at end of file From 3d4f7d98f5495a64d0e3932634f8f8e38f53f9da Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:22:30 -0200 Subject: [PATCH 35/37] add opera support --- source/fadeOutUp.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/source/fadeOutUp.css b/source/fadeOutUp.css index ee28946..c2e92d5 100644 --- a/source/fadeOutUp.css +++ b/source/fadeOutUp.css @@ -31,6 +31,17 @@ -ms-transform: translateY(-20px); } } +@-o-keyframes fadeOutUp { + 0% { + opacity: 1; + -o-transform: translateY(0); + } + + 100% { + opacity: 0; + -o-transform: translateY(-20px); + } +} @keyframes fadeOutUp { 0% { opacity: 1; @@ -47,5 +58,6 @@ -webkit-animation-name: fadeOutUp; -moz-animation-name: fadeOutUp; -ms-animation-name: fadeOutUp; + -o-animation-name: fadeOutUp; animation-name: fadeOutUp; } \ No newline at end of file From 0e12b1cb9372cbae2bda59e4cd9759fce3f64536 Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:23:17 -0200 Subject: [PATCH 36/37] add opera support --- source/fadeOutUpBig.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/source/fadeOutUpBig.css b/source/fadeOutUpBig.css index 5ee886e..789f8e7 100644 --- a/source/fadeOutUpBig.css +++ b/source/fadeOutUpBig.css @@ -34,6 +34,18 @@ } } +@-o-keyframes fadeOutUpBig { + 0% { + opacity: 1; + -o-transform: translateY(0); + } + + 100% { + opacity: 0; + -o-transform: translateY(-2000px); + } +} + @keyframes fadeOutUpBig { 0% { opacity: 1; @@ -50,5 +62,6 @@ -webkit-animation-name: fadeOutUpBig; -moz-animation-name: fadeOutUpBig; -ms-animation-name: fadeOutUpBig; + -o-animation-name: fadeOutUpBig; animation-name: fadeOutUpBig; } \ No newline at end of file From c81d2c321da01af7b9e435b18b281c002f967c3a Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Thu, 20 Oct 2011 17:24:54 -0200 Subject: [PATCH 37/37] add opera support --- source/flash.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/flash.css b/source/flash.css index c506b0b..6e181b3 100644 --- a/source/flash.css +++ b/source/flash.css @@ -13,6 +13,11 @@ 25%, 75% {opacity: 0;} } +@-o-keyframes flash { + 0%, 50%, 100% {opacity: 1;} + 25%, 75% {opacity: 0;} +} + @keyframes flash { 0%, 50%, 100% {opacity: 1;} 25%, 75% {opacity: 0;} @@ -22,5 +27,6 @@ -webkit-animation-name: flash; -moz-animation-name: flash; -ms-animation-name: flash; + -o-animation-name: flash; animation-name: flash; } \ No newline at end of file