framer.js を使用して脈動するループ アニメーション効果を作成しようとしています。画像をレイヤーに読み込んで、連続的に拡大縮小したいと考えています。縮小してアニメーションを無期限にループする方法がわかりません。これは私が現在持っているものです:
imageLayer = new Layer({x:0, y:0, width:128, height:128, image:"images/icon.png"})
imageLayer.center()
animationA = new Animation({
layer: imageLayer,
properties: {scale: 2.0},
curve: "ease-in-out"
})
animationA.start()