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