0
Fabricjs:我有一些圓圈,超出畫布層(top:-300),他們有coords,但是當我做指定位置的動畫時,他們只是在沒有任何動畫的指定持續時間內出現在屏幕上。他們爲什麼這樣做,以及如何實現這一點?爲什麼超越畫布的元素不會動畫(fabricjs)?
animateCircle(ind, co, shift = -300, ca) {
co.animate('top', shift, {
duration: 1000,
onChange: ind !== null && ++ind === ca.length ? this.c.renderAll.bind(this.c): undefined,
easing: fabric.util.ease[0]
});
}