如何通过角度7为图像设置动画

时间:2019-06-27 15:53:58

标签: javascript angular animation angular-animations

它应该上升一半,同时向右移动,第二个一半也向右移动,但是现在下降,而不是上升 我也尝试过使用关键帧的变体,但这无济于事,

    export const ShowBall = trigger("ShowBall", [
      state('2', style({ top: '300px', left: "100px" })),
      state('1', style({ top: '300px', left: "300px" })),

      transition('1 <=> 2',

        group([
          animate('2s'),
          sequence([
            animate('1s', style({ top: '200px' })),
            animate('1s', style({ top: '300px' }))
          ]
          ),
        ])
      ),
    ])

0 个答案:

没有答案