例として、jQuery animate 関数を使用します。通常は次のように機能します。
$("#div1").animate({
width: '300px',
}, 1000, function() {
console.log("animate 1 done");
});
私はこのようにしたいと思います:
animateConfig = [{
width: '300px',
}, 1000, function() {
console.log("animate1 done");
}];
startAnimate($("#div1"), animateConfig);
function startAnimate(obj, animateConfig) {
console.log(animateConfig);
obj.animate(animateConfig);
}