3

我正在使用此 Stackoverflow Question中建议的方法来重新创建 jQueryslideDown函数animate,以便我可以使用该step属性。

但是,我无法让 step 属性工作。这是我的代码:

    infoClone.animate({
        "height": "show",
        "marginTop": "show",
        "marginBottom": "show",
        "paddingTop": "show",
        "paddingBottom": "show",

        step : function() {
            console.log('Step!');
        }
    });
4

2 回答 2

5

你应该把它改成

infoClone.animate({
    "height": "show",
    "marginTop": "show",
    "marginBottom": "show",
    "paddingTop": "show",
    "paddingBottom": "show"
    }, {
    step : function() {
        console.log('Step!');
    }
});
于 2012-09-21T11:17:36.640 回答
2

试试这个:

infoClone.animate({
        "height": "show",
        "marginTop": "show",
        "marginBottom": "show",
        "paddingTop": "show",
        "paddingBottom": "show"
},
{
  step : function() {
            console.log('Step!');
        }
});
于 2012-09-21T11:18:09.313 回答