我正在使用此 Stackoverflow Question中建议的方法来重新创建 jQueryslideDown
函数animate
,以便我可以使用该step
属性。
但是,我无法让 step 属性工作。这是我的代码:
infoClone.animate({
"height": "show",
"marginTop": "show",
"marginBottom": "show",
"paddingTop": "show",
"paddingBottom": "show",
step : function() {
console.log('Step!');
}
});