我有以下代码:
image1Rect.animate({
transform: "S-0.025,1"
}, 1000, 'easeOut', function () {
image1Rect.hide();
image1Ref.show();
image1Ref.scale(0.025, 1);
image1Ref.animate({
transform: "S1,1"
}, 1000, 'easeOut');
});
我试图减少 to 的 X 比例,image1Rect
然后0.025
当完成后增加image1Ref
from 0.025
to的比例1
X。我正在尝试使用附加转换来做到这一点,但由于这对我不起作用,我不得不使用不推荐使用的函数 scale onimage1Ref
首先将其比例 X 减小到0.025
.
理想情况下,我想使用附加的转换来做到这一点,你能帮帮我吗?