逐帧动画的使用

Posted huangqiming

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了逐帧动画的使用相关的知识,希望对你有一定的参考价值。

1、如果对性能要求不高可以直接使用jquery的animate

  $(".nowGift" + heartNumber + "").animate({ right: (x += x_step) + ‘px‘, bottom: (y += a * x_step + 1.5) + ‘px‘, opacity: (300 - y) / 300 }, speed, function () {
    if (y > 300) {
      $(".nowGift" + heartNumber + "").remove();
    }else{
      count++;
      heartMove(x, y, a, x_step, heartNumber, speed, count);//回调函数。
    }
  });

 注意:这会导致jQuery的bug,窗口失去焦点时停止触发。

2、可以使用第二种方案,直接替代jquery的animate使用velocity.js直接替代animate

  $(".nowGift" + heartNumber + "").velocity({ right: (x += x_step) + ‘px‘, bottom: (y += a * x_step + 1.5) + ‘px‘, opacity: (300 - y) / 300 }, speed, function () {
    if (y > 300) {
      $(".nowGift" + heartNumber + "").remove();
    }else{
      count++;
      heartMove(x, y, a, x_step, heartNumber, speed, count);//回调函数。
    }
  });

 性能会更好,而且不会引发那个bug

3、可以直接使用css3的transition或者使用setTimeout

  $(".nowGift" + heartNumber + "").css({‘right‘: (x += x_step) + ‘px‘, ‘bottom‘: (y += a * x_step + 1.5) + ‘px‘, ‘opacity‘: (300 - y) / 300 })
  if (y > 300) {
    $(".nowGift" + heartNumber + "").remove();
  }else{
    setTimeout(function(){
      count++;
      heartMove(x, y, a, x_step, heartNumber, speed, count);//回调函数。
    },20)
  }

  效果可能会差一点需要调节,不过性能方面也是可以的  

以上是关于逐帧动画的使用的主要内容,如果未能解决你的问题,请参考以下文章

Android中实现一个简单的逐帧动画(附代码下载)

Android 学习之逐帧动画(Frame)

Android动画使用总结

逐帧调整动画 UIImage 的大小非常慢

使用画布的 HTML5 中的逐帧动画

Android逐帧动画和补间动画