Javascript Raphael动画路径

时间:2017-11-10 22:05:41

标签: javascript raphael

我有一个形状并且能够旋转的路径,但我无法弄清楚如何让形状/路径向下移动到屏幕上。我已经看过其他解决方案,但我似乎无法让它们工作。感谢。

leftRec = paper.path("M400 50 L380 70 420 90 380 110 420 130 400 150 350 150 350 50z");
leftRec.attr("fill","#f00");
leftRec.animate({transform:"r-70,400,150"}, 2000, "ease-in");

leftRec.animate({cy: 600, cx: 200}, 2000);

1 个答案:

答案 0 :(得分:0)

要同时执行旋转和平移,请使用animate方法

var leftRec = paper.path("M400 50 L380 70 420 90 380 110 420 130 400 150 350 150 350 50Z");
leftRec.attr("fill","#f00");
leftRec.animate({transform: "T0,500R-90"}, 1000, "ease-in");

要先执行旋转然后再进行翻译,请使用animate方法

中的回调
var leftRec = paper.path("M400 50 L380 70 420 90 380 110 420 130 400 150 350 150 350 50Z");
leftRec.attr("fill","#f00");
leftRec.animate({transform:"r-90,400,150"}, 1000, "ease-in", function() {
    this.animate({
        path: Raphael.transformPath('M400 50 L380 70 420 90 380 110 420 130 400 150 350 150 350 50Z', 'T-500,0')
    }, 1000);

    // The below approach could have worked in theory but probably the coordinate system change might 
    // tamper with the subsequent transform. I am not so sure.
    // this.animate({transform: "T0,500"}, 1000)
});

在这两种情况下,形状都会垂直移动500px。

这可能不是最好的解决方案,如果有更好的方法可以解决/改进这个问题。