Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/user-interface/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/qt/7.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
User interface 如何在FramerJS中收缩层_User Interface_Framerjs - Fatal编程技术网

User interface 如何在FramerJS中收缩层

User interface 如何在FramerJS中收缩层,user-interface,framerjs,User Interface,Framerjs,在这里我尝试使用z值,它被放大了。为了缩小比例,我认为我们应该使用-value,然后它也放大了,但反过来。我想缩小规模。请提供帮助。要缩小图层,请使用“缩放”属性 animationA = new Animation layer: doc.canteen properties: x: 400 y: 1600 opacity: 0.5 curve: "bezier-curve(0.25, 0.1, 0.25, 1)" 以下是一个例子: animationA = new A

在这里我尝试使用z值,它被放大了。为了缩小比例,我认为我们应该使用-value,然后它也放大了,但反过来。我想缩小规模。请提供帮助。

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

animationA = new Animation
layer: doc.canteen
properties:
    x: 400
    y: 1600
    opacity: 0.5
curve: "bezier-curve(0.25, 0.1, 0.25, 1)"
以下是一个例子:

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