我正在使用this Stackoverflow Question中建议的方法,使用slideDown
重新创建jQuery animate
函数,以便我可以使用step
属性。
但是,我无法使步骤属性起作用。这是我的代码:
infoClone.animate({
"height": "show",
"marginTop": "show",
"marginBottom": "show",
"paddingTop": "show",
"paddingBottom": "show",
step : function() {
console.log('Step!');
}
});
答案 0 :(得分:5)
您应该将其更改为
infoClone.animate({
"height": "show",
"marginTop": "show",
"marginBottom": "show",
"paddingTop": "show",
"paddingBottom": "show"
}, {
step : function() {
console.log('Step!');
}
});
答案 1 :(得分:2)
试试这个:
infoClone.animate({
"height": "show",
"marginTop": "show",
"marginBottom": "show",
"paddingTop": "show",
"paddingBottom": "show"
},
{
step : function() {
console.log('Step!');
}
});