我在这里有这段代码:
$('.section1').animate().css('overflow', 'visible');
如何为此应用完成处理程序?
答案 0 :(得分:1)
从the docs .animate
开始,当动画完成时会触发回调。
$('div').animate({
top: 0
}, 500, function (e) {
// Set this elements overflow to visible once
// the animation has been completed
$(e.currentTarget).css({overflow: 'visible'})
})