antvis / G

💥 A flexible rendering engine for visualization.
https://g.antv.antgroup.com/
1.07k stars 198 forks source link

g-svg 问题汇总 #388

Closed simaQ closed 4 months ago

simaQ commented 4 years ago
clipShape.animate({
  height: 160
}, {
  duration: 1000,
  easing: 'easeQuadOut',
  callback: () => {
    // 移除 clipShape
    group.set('clipShape', null);
    clipShape.remove(true); // 动画结束需要将剪切图形销毁
  }
});
simaQ commented 4 years ago

复现 demos : http://riddle.alibaba-inc.com/riddles/cf9bea7

simaQ commented 4 years ago

http://riddle.alibaba-inc.com/riddles/8b40fef3

simaQ commented 4 years ago

复现 DEMO: http://riddle.alibaba-inc.com/riddles/722198f9

image

dengfuping commented 4 years ago
clipShape.animate({
  height: 160
}, {
  duration: 1000,
  easing: 'easeQuadOut',
  callback: () => {
    // 移除 clipShape
    group.set('clipShape', null);
    clipShape.remove(true); // 动画结束需要将剪切图形销毁
  }
});
hustcc commented 4 years ago
dengfuping commented 4 years ago