5
我正在使用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);
我也在尋找一種方法將其旋轉回原來的位置。如何讓它追溯它的路徑?