vue-animate
Version:
LESS cross-browser animation library, for use with Vue.js. Ported from Animate.css.
22 lines (18 loc) • 310 B
text/less
@keyframes slideInDown {
from {
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
@keyframes slideOutDown {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, 100%, 0);
}
}