如何将应用程序从Raphael 1.5.2转换为Raphael 2.0?

时间:2011-11-01 23:28:33

标签: javascript raphael

我在jsfiddl jsfiddle with raphael 1.5.2

上看到了这个应用程序

当我试图用raphael 2.0运行它时,我遇到了一些错误,并且有些效果没有运行!

如何更改代码以使其与raphael 2.0一起运行?

谢谢

1 个答案:

答案 0 :(得分:1)

问题似乎是动画 比例

The Raphael reference表明,要缩放对象,可以使用以下内容:

element.animate({transform: 's1.05'}, 200);

所以通过改变小提琴的末尾,在js部分,在for循环中

this.animate({scale: '1.2'}, 200);

this.animate({transform: 's1.2'}, 200);

this.animate({scale: '1.05'}, 200);

this.animate({transform: 's1.05'}, 200);
事情应该有效。