首页 > 其他 > 详细

逐帧动画的使用

时间:2018-08-22 16:30:40      阅读:175      评论:0      收藏:0      [点我收藏+]

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)
  }

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

逐帧动画的使用

原文:https://www.cnblogs.com/huangqiming/p/9517910.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!