$('[data-id=61]').first().animate({height: '1000px'}, 500)
animate calls its callback once for each element in the set you call animate
$("html, body").animate(/*...*/) .promise().then(function() { // Animation complete });
← 元素位置 拖拽 →