0
我有一個圓圈,我將它移動,我怎樣才能使發光效果跟隨那個圓圈。RaphaelJS HTML5 Library:沿着圓圈發光動畫
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
});
});
請將代碼添加到jsfiddle.net請 – Neil
查看animateWith – Neil