2
animationA = new Animation
layer: doc.canteen
properties:
    x: 400
    y: 1600
    opacity: 0.5
curve: "bezier-curve(0.25, 0.1, 0.25, 1)"

在这里我尝试使用 z 值,它被放大了。要按比例缩小,我认为我们应该使用 - 值,然后它也按比例放大但相反。我想缩小它。请帮忙。

4

1 回答 1

0

要缩小图层,请使用 Scale 属性。

animationA = new Animation
    layer: doc.canteen
    properties:
        scale: .5 #Scales down to 50%
    curve: "bezier-curve(0.25, 0.1, 0.25, 1)"

这是一个例子:http ://share.framerjs.com/4nxwdq04ar30/

于 2016-03-17T10:39:11.360 回答