@fe6/water-pro
Version:
An enterprise-class UI design language and Vue-based implementation
36 lines (32 loc) • 764 B
JavaScript
import cssAnimation from '../../_util/css-animation';
function animate(node, show, transitionName, done) {
let height;
return cssAnimation(node, transitionName, {
start() {
if (!show) {
node.style.height = `${node.offsetHeight}px`;
} else {
height = node.offsetHeight;
node.style.height = 0;
}
},
active() {
node.style.height = `${show ? height : 0}px`;
},
end() {
node.style.height = '';
done();
},
});
}
function animation(prefixCls) {
return {
onEnter(node, done) {
return animate(node, true, `${prefixCls}-anim`, done);
},
onLeave(node, done) {
return animate(node, false, `${prefixCls}-anim`, done);
},
};
}
export default animation;