@antv/g2
Version:
the Grammar of Graphics in Javascript
42 lines • 1.21 kB
JavaScript
import { isNil } from '@antv/util';
/**
* @ignore
* 单个 shape 动画
* 渐现动画
* @param shape 执行动画的图形元素
* @param animateCfg 动画配置
* @param cfg 额外信息
*/
export function fadeIn(shape, animateCfg, cfg) {
var endState = {
fillOpacity: isNil(shape.attr('fillOpacity')) ? 1 : shape.attr('fillOpacity'),
strokeOpacity: isNil(shape.attr('strokeOpacity')) ? 1 : shape.attr('strokeOpacity'),
opacity: isNil(shape.attr('opacity')) ? 1 : shape.attr('opacity'),
};
shape.attr({
fillOpacity: 0,
strokeOpacity: 0,
opacity: 0,
});
shape.animate(endState, animateCfg);
}
/**
* @ignore
* 单个 shape 动画
* 渐隐动画
* @param shape 执行动画的图形元素
* @param animateCfg 动画配置
* @param cfg 额外信息
*/
export function fadeOut(shape, animateCfg, cfg) {
var endState = {
fillOpacity: 0,
strokeOpacity: 0,
opacity: 0,
};
var easing = animateCfg.easing, duration = animateCfg.duration, delay = animateCfg.delay;
shape.animate(endState, duration, easing, function () {
shape.remove(true);
}, delay);
}
//# sourceMappingURL=fade.js.map