cloudhubui
Version:
Various components to use in react projects
35 lines (34 loc) • 666 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.varScaleOutY = exports.varScaleOutX = void 0;
// ----------------------------------------------------------------------
var TRANSITION_ENTER = {
duration: 0.64,
ease: [0.43, 0.13, 0.23, 0.96]
};
var varScaleOutX = {
initial: {
scaleX: 1,
opacity: 1
},
animate: {
scaleX: 0,
opacity: 0,
transition: TRANSITION_ENTER
}
};
exports.varScaleOutX = varScaleOutX;
var varScaleOutY = {
initial: {
scaleY: 1,
opacity: 1
},
animate: {
scaleY: 0,
opacity: 0,
transition: TRANSITION_ENTER
}
};
exports.varScaleOutY = varScaleOutY;