animate.css/source/bouncing_exits/bounceOut.css
Sarbbottam Bandyopadhyay 0bc05a7559 converted all the tabs into spaces
and fixed typo in the previous commit
at source/attention_seekers/swing.css
2014-02-24 03:26:08 +05:30

24 lines
258 B
CSS

@keyframes bounceOut {
0% {
transform: scale(1);
}
25% {
transform: scale(.95);
}
50% {
opacity: 1;
transform: scale(1.1);
}
100% {
opacity: 0;
transform: scale(.3);
}
}
.bounceOut {
animation-name: bounceOut;
}