我正在使用 Raphael JS 试图围绕低于其中心点的点旋转图像形状。如何才能做到这一点?
我尝试了以下方法,但它不起作用。
var playBBox = playButtonRef.getBBox();
var xPos = playBBox.x + playBBox.width/2;
var yPos = playBBox.y;
var animObject = Raphael.animation({
transform: playButtonRef.attr("transform") + "R60," + (this.cx - 25) + "," + this.cy
}, 3000);
animObject = animObject.repeat(10);
playButtonRef.animate(animObject);
我也在寻找一种将其旋转回其原始位置的方法。如何让它追溯它的路径?