使用jQuery为可修复的

时间:2016-04-11 18:10:36

标签: jquery-ui jquery-animate

有没有办法使用jQuery.animate()为变量设置动画?我正在寻找最简单的方法来做这样的事情:

$element.animate({
    whatever: 100
  }, {
    duration: 1000,
    step: function( now, fx ){
      // do something useful here using the value of "now"
    }
  });

但未使用$element或其任何属性,我只想使用fromtodurationeasing function设置动画,然后能够使用提供给now的{​​{1}}值调用我的自定义逻辑(from和to将是整数)。

显然这有效:

step

但是id'很高兴它没有引用任何元素。

0 个答案:

没有答案