Xamarin.Forms UWP上的缩放动画不重复

时间:2019-04-17 19:27:58

标签: xamarin animation xamarin.forms xamarin.uwp

我正在尝试在图像上设置类似于https://daneden.github.io/animate.css/

上的 pulse 的动画

因此,在Xamarin.Forms中,我试图使用ViewExtensions类中的 ScaleTo 重新创建该动画:

await image.ScaleTo (1.3, 500);
await image.ScaleTo (1, 500);
await image.ScaleTo (1.3, 500);
await image.ScaleTo (1, 500);

但是实际上什么都没发生,我的形象还是一样。

我该如何解决?

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

我会将CSS pulse转换为自定义的父/子动画。

CSS Pulse:

//animation-duration: 1s;
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

Xamarin动画:

new Animation
 {
      { 0, 0.5, new Animation (v => image.Scale = v, 1, 1.05) },
      { 0.5, 1, new Animation (v => image.Scale = v, 1.05, 1) },
 }.Commit(this, "viewAnim", 16, 1000, Easing.Linear);