我有一个 Raphael 集,我想垂直移动 400 像素。
当我绘制路径时,我对集合中的所有路径应用了单独的 x 轴变换。当我尝试应用 y 轴变换时,我丢失了 x 值。解决方案是什么?
sampleIcon = self.paper.path(path).attr({'transform': 't' + (someWidth*index) + ',60' });
iconSet.push(sampleIcon);
// when I click on something
iconSet.animate({transform: 't' + (original x-transform value for each icon) + ',400'});
或者有没有办法完全省略 x 变换?