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