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);