0

我从这里使用 ActionScript Tweener

我的一张图像上有一个缩放动画,但我似乎无法让它向上而不是向下缩放(放大)

Tweener.addTween(myImage,
{
  scaleX: 1.5;
  scaleY: 1.5;
  transition: "linear";
}

我尝试修改保存图像的 flex 组件,但动画似乎忽略了图像容器的尺寸。有什么方法可以使用 Tweener 但没有任何其他外部组件来做到这一点?

4

1 回答 1

0

知道了。将容器更改为 HGroup 并将 VerticalAlign 设置为 center

<s:HGroup verticalAlign="bottom">
  <s:Graphic mouseOver="enlargeImg(event)" mouseOut="shrinkImg(event)" ../>
  <s:Graphic ../>
</s:HGroup>
于 2012-10-18T17:26:54.603 回答