有没有办法使用jQuery.animate()
为变量设置动画?我正在寻找最简单的方法来做这样的事情:
$element.animate({
whatever: 100
}, {
duration: 1000,
step: function( now, fx ){
// do something useful here using the value of "now"
}
});
但未使用$element
或其任何属性,我只想使用from
,to
,duration
和easing function
设置动画,然后能够使用提供给now
的{{1}}值调用我的自定义逻辑(from和to将是整数)。
显然这有效:
step
但是id'很高兴它没有引用任何元素。