0

我在 Titanium 工作,开发一个旋转的轮子。我需要将滚轮从图像的默认位置向下移动,然后在其新中心旋转滚轮(向下移动后)。

我怎样才能做到这一点 ?

这是我写的代码;但是当我向下移动它时,它不会旋转新的移动中心。

var image = Titanium.UI.createImageView({
   backgroundImage:'test.png',
   width: wheelWidth,
   height:wheelHeight,
   bottom:100
   anchorPoint:{x:0.5, y:0.5}
});
4

1 回答 1

0

这将使图像围绕其中心旋转 10 度。

var animation = Ti.UI.createAnimation({
    anchorPoint : {x:0.5, y:0.5}, // Put this in only if on Android
    transform : Ti.UI.create2DMatrix().rotate(10), // amount of rotation
    duration : 2000 // Time this will take in milliseconds
});
image.animate(animation);
于 2013-07-25T23:38:25.143 回答