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值,它被放大了。为了缩小规模,我认为我们应该使用- value,然后它也放大了,但反过来。我想把它缩小。请帮帮忙。
发布于 2016-03-17 18:39:11
要收缩图层,请使用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/
https://stackoverflow.com/questions/35507071
复制相似问题