[framer学习]animation(3)

layerA = new Layer
    backgroundColor: "black"
    y: 275
    x: 100

layerA.animate
   rotation: 180
   borderRadius: 200
   options: 
       curve:"ease"
       time:7

layerA.animate
    scale: 0.5
    options:
        curve: "ease"
        delay: 1
        time: 1

layerA.animate
    scale: 2.00
    options:
        delay:3
        curve: "spring(400,20,0)"

你可能感兴趣的:([framer学习]animation(3))