私はそれを動かす円を持っています、どうすればその円に続くグロー効果を作ることができますか?
circle = paper.circle(x, y, 5);
glowSet = circle.glow({
'fill': true,
'color': '#bbb'
});
// ...
// I animate the circle later on using
circle.animate({
cx: coordX,
cy: coordY
});
セット全体でアニメートしてみました
glowSet.animate({
x: coordX,
y: coordY
});
セット全体でforEachを使用して各アイテムに適用しようとしました
glowSet.forEach(function(item) {
item.animate({
x: coordX,
y: coordY
});
});