antvis / G

💥 A flexible rendering engine for visualization.

Home Page:https://g.antv.antgroup.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[g] 贝塞尔曲线画出的动画不对

coredesign1234 opened this issue · comments

使用如下的贝塞尔曲线画动画,动画结尾的弹性收缩后,还会有个冗余的放大/缩小过程,但幅度减小很多。换句话讲,贝塞尔曲线该结束时未结束
{
keyframes: [{ transform: 'scale(0)' }, { transform: 'scale(1)' }],
animationOptions: {
duration: 1000,
fill: 'both',
easing: 'cubic-bezier(0.2, 0, 0.23, 1.44)',
}
}

已修复:#1623