如何在FramerJS中缩小图层

时间:2016-02-19 13:57:59

标签: user-interface framerjs

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值,它被放大了。为了缩小我认为我们应该使用 - 值,然后它也按比例放大但反过来。我想缩小它。请帮忙。

1 个答案:

答案 0 :(得分:0)

要缩小图层,请使用“缩放”属性。

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/